提交记录 15085


用户 题目 状态 得分 用时 内存 语言 代码长度
yangqianrui 1000i. 【传统题】 A+B Problem Wrong Answer 0 69.22 us 36 KB C++ 440 B
提交时间 评测时间
2020-11-21 16:35:12 2020-11-21 16:35:15
#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 #169.22 us36 KBWrong AnswerScore: 0


Judge Duck Online | 评测鸭在线
Server Time: 2024-04-24 12:58:28 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用