提交记录 9268
提交时间 |
评测时间 |
2019-04-21 20:06:46 |
2020-08-01 01:34:52 |
#include<cstdio>
using namespace std;
struct node{
int x;
} a,b;
int n;
node operator+(const node &a,const node &b){
return (node){a.x+b.x};
}
int main(){
scanf("%d",&n);
while (n--){
scanf("%d%d",&a.x,&b.x);
printf("%d\n",(a+b).x);
}
return 0;
}
Compilation | N/A | N/A | Compile OK | Score: N/A | 显示更多 |
Testcase #1 | 37.99 us | 16 KB | Accepted | Score: 100 | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2024-11-23 22:59:26 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠