| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 143090 | 冰块ee | A+B 输入输出练习III | C++ | Output Limit Exceeded | 30 MS | 260 KB | 231 | 2026-01-11 18:52:23 |
#include<bits/stdc++.h> using namespace std; int a,b; int main(){ while(1){ if(a==0&&b==0){ cout<<a+b<<endl; }else{ return 0; } } return 0; }