Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
109009 | 常钰杰 | A+B 输入输出练习I | C++ | Output Limit Exceeded | 12 MS | 268 KB | 174 | 2025-01-24 10:30:49 |
#include<iostream> using namespace std; int main() { int a,b; for(int i=1;i>=1;i++) { cin>>a>>b; cout<<a+b<<endl; } return 0; }