编号 题目 状态 分数 总时间 内存 代码 / 答案文件 提交者 提交时间
#84527 #113. 送分 A + B Accepted 100 7 ms 264 K C++ 11 / 619 B ws2092291971 2023-05-07 13:20:01
显示原始代码
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define endl '\n';
const int INF = 0x3f3f3f3f;
const ll mod = 998244353;
const int N = 200005, M = 1000005;
typedef pair<int, int> PII;

ll extend_gcd(ll a, ll b, ll &x, ll &y) {
    if (b == 0) {
        x = 1;
        y = 0;
        return a;
    }
    ll d = extend_gcd(b, a % b, y, x);
    y -= a / b * x;
    return d;
}

void solve() {
    int i, j;
    cin >> i >> j;
    cout << i + j;
}

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
    cout.tie(nullptr);
    int i, j;
    int t;
    t = 1;
    while (t--) {
        solve();
    }
    return 0;
}
子任务 #1
Accepted
得分:100
测试点 #1
Accepted
得分:100
用时:2 ms
内存:228 KiB

输入文件(apb0.in

11134 2245

答案文件(apb0.out

13379

用户输出

13379

系统信息

Exited with return code 0
测试点 #2
Accepted
得分:100
用时:2 ms
内存:264 KiB

输入文件(apb1.in

1 1

答案文件(apb1.out

2

用户输出

2

系统信息

Exited with return code 0
测试点 #3
Accepted
得分:100
用时:3 ms
内存:256 KiB

输入文件(apb2.in

123 456

答案文件(apb2.out

579

用户输出

579

系统信息

Exited with return code 0