Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94500 zzh120788 A+B 输入输出练习I C++ Output Limit Exceeded 4 MS 272 KB 162 2024-10-22 21:19:32

Tests(0/1):


Code:

#include<bits/stdc++.h> using namespace std; int main() { int a,b,c; for(int i=1;i<=192190;i++){ cin>>a>>b; c=a+b; cout<<c; c=0; } return 0; }