博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
A+B Problem && OJ推荐【持续更新】
阅读量:6903 次
发布时间:2019-06-27

本文共 2224 字,大约阅读时间需要 7 分钟。

目录


List

前言

有没有觉得写这篇文章很奇怪,这个还是有原因的。①很多OJ都有着道题,所以发个博客②这可以介绍很多OJ(持续更新)

长郡

热烈推荐:

然后有一套A+B的神题-Contest4 - A+B Series()

Position:

  • Notice

不同的题目:

--- hdu1000(见code2)-多组数据,坑
其他没有A+B Problem好的OJ

code

e

搞了三发才0ms

#include 
#include
inline int gi() { register int w=0;register char ch=getchar(); while(ch<'0'||ch>'9')ch=getchar(); while(ch>='0'&&ch<='9')w=w*10+ch-'0',ch=getchar(); return w;}int main(){ printf("%d",gi()+gi()); return 0;}

1.

// 
- 08/13/16 15:16:49// This file is made by YJinpeng,created by XuYike's black technology automatically.// Copyright (C) 2016 ChangJun High School, Inc.// I don't know what this program is.#include
#include
#include
#include
#include
#include
#include
#define MOD 1000000007#define INF 1e9#define EPS 1e-10using namespace std;typedef long long LL;const int MAXN=100010;const int MAXM=100010;inline int max(int &x,int &y) {return x>y?x:y;}inline int min(int &x,int &y) {return x
'9')&&ch!='-')ch=getchar(); if(ch=='-')q=1,ch=getchar(); while(ch>='0'&&ch<='9')w=w*10+ch-'0',ch=getchar(); return q?-w:w;}int main(){ freopen("A+B_Problem.in","r",stdin); freopen("A+B_Problem.out","w",stdout); LL a=getLL(),b=getLL(); cout<

2.

// 
- 08/13/16 15:16:49// This file is made by YJinpeng,created by XuYike's black technology automatically.// Copyright (C) 2016 ChangJun High School, Inc.// I don't know what this program is.#include
#include
#include
#include
#include
#include
#include
#define MOD 1000000007#define INF 1e9#define EPS 1e-10using namespace std;typedef long long LL;const int MAXN=100010;const int MAXM=100010;inline int max(int &x,int &y) {return x>y?x:y;}inline int min(int &x,int &y) {return x
'9')&&ch!='-')ch=getchar(); if(ch=='-')q=1,ch=getchar(); while(ch>='0'&&ch<='9')w=w*10+ch-'0',ch=getchar(); return q?-w:w;}int main(){ freopen("A+B_Problem.in","r",stdin); freopen("A+B_Problem.out","w",stdout); int a,b; while(~scanf("%d%d",&a,&b))printf("%d\n",a+b); return 0;}

持续更新,么么哒

转载于:https://www.cnblogs.com/YJinpeng/p/5907430.html

你可能感兴趣的文章
ubuntu下安装mysql
查看>>
在jmeter测试mysql中如何一次运行多条sql语句
查看>>
RPC框架性能基本比较测试
查看>>
git安装
查看>>
SEO黑页以及门页框架和JS跳转实现方法
查看>>
html5 Ajax 访问.net WebApi获取视频流
查看>>
[HNOI2008]玩具装箱TOY
查看>>
luogu P1801 黑匣子_NOI导刊2010提高(06)
查看>>
Java jdk环境变量配置
查看>>
Given Name.Family Name的区别
查看>>
读取Mysql的一种的方式
查看>>
信息安全--仿射密码
查看>>
深入浅出javascript(二)函数和this对象
查看>>
Form 对象
查看>>
Codeforces Round #533(Div. 2) C.Ayoub and Lost Array
查看>>
HDU - 3966-Aragorn' Story(树链剖分+线段树)
查看>>
Linux基础第五章 进程控制
查看>>
[转载]孤儿进程与僵尸进程[总结]
查看>>
jquery事件机制扩展,jquery鼠标右键事件。
查看>>
windows phone Image checkbox
查看>>