提交记录 15087


用户 题目 状态 得分 用时 内存 语言 代码长度
yangqianrui 1000i. 【传统题】 A+B Problem Accepted 100 68.52 us 36 KB C++11 460 B
提交时间 评测时间
2020-11-21 16:36:36 2020-11-21 16:36:37
#include <bits/stdc++.h>
using namespace std;
#define int long long
int re() {
    int ret = 0, f = 1;
    char ch = getchar();
    while (ch < '0' || ch > '9') f = (ch == '-') ? -f : f, ch = getchar();
    while (ch >= '0' && ch <= '9') 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 #168.52 us36 KBAcceptedScore: 100


Judge Duck Online | 评测鸭在线
Server Time: 2024-04-18 23:14:43 | Loaded in 0 ms | Server Status
个人娱乐项目,仅供学习交流使用