提交记录 6842


用户 题目 状态 得分 用时 内存 语言 代码长度
Xylodesu 1000i. 【传统题】 A+B Problem Wrong Answer 0 42.58 us 36 KB C++ 482 B
提交时间 评测时间
2018-11-08 14:08:32 2020-08-01 00:50:45
#include <bits/stdc++.h>

using namespace std;

typedef double dd;
typedef long long ll;

#define fora(i, j, k) for (int i = j; i <= k; ++i)
#define lowbit(x) (x & (-x))

inline ll read() {
	ll s = 0; char c = getchar(); int tip = 1;
	for (; !isdigit(c); c = getchar())
		if (c == '-') tip *= -1;
	for (; isdigit(c); c = getchar())
		s = (s << 3) + (s << 1) + (c ^ 48);
	return s * tip;
}

int i, j, k, m, n;

int main() {
	n = read(); m = read();
	cout << n+m << endl;
	return 0;
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #142.58 us36 KBWrong AnswerScore: 0


Judge Duck Online | 评测鸭在线
Server Time: 2026-04-09 10:33:37 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠