| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 143872 | 刘宸宇 | A+B 输入输出练习I | C++ | Accepted | 3 MS | 272 KB | 285 | 2026-01-17 20:32:49 |
#include <bits/stdc++.h> using namespace std; int main() { vector<int> a,b,c; int x,y; while (cin>>x>>y) { a.push_back(x); b.push_back(y); } for (int i = 0; i < a.size(); i++) { cout<<a[i]+b[i]<<endl; } return 0; }