提交记录 15086


用户 题目 状态 得分 用时 内存 语言 代码长度
yangqianrui 1000i. 【传统题】 A+B Problem Accepted 100 63.81 us 36 KB C++11 441 B
提交时间 评测时间
2020-11-21 16:36:03 2020-11-21 16:36:05
#include <bits/stdc++.h>
using namespace std;
#define int long long
int re() {
    int ret = 0, f = 1;
    char ch = getchar();
    while (!isdigit(ch)) f = (ch == '-') ? -f : f, ch = getchar();
    while (isdigit(ch)) ret = ret * 10 + ch - '0', ch = getchar();
    return ret * f;
}

signed main() {
    int n = re();
    for (int i = 1; i <= n; ++i) {
        int a = re(), b = re();
        printf("%lld\n", a + b);
    }
    return 0;
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #163.81 us36 KBAcceptedScore: 100


Judge Duck Online | 评测鸭在线
Server Time: 2024-05-09 06:35:55 | Loaded in 0 ms | Server Status
个人娱乐项目,仅供学习交流使用