提交记录 28834


用户 题目 状态 得分 用时 内存 语言 代码长度
tingting28 1000i. 【传统题】 A+B Problem Accepted 100 79.07 us 64 KB C++ 580 B
提交时间 评测时间
2026-01-21 15:59:22 2026-01-21 15:59:25
#include <bits/stdc++.h>

using namespace std;

using i8 = int8_t;
using i16 = int16_t;
using i32 = int32_t;
using i64 = int64_t;
using i128 = __int128_t;
using u8 = uint8_t;
using u16 = uint16_t;
using u32 = uint32_t;
using u64 = uint64_t;
using u128 = __uint128_t;
using f32 = float;
using f64 = double;
using f96 = long double;
using f128 = __float128;

int main() {
    ios::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr);
    int n;
    cin >> n;
    for (int i = 0; i < n; ++i) {
    	int a, b;
    	cin >> a >> b;
    	cout << a + b << endl;
	}
    return 0;
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #179.07 us64 KBAcceptedScore: 100


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