| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 141120 | 张文浩 | 消消乐 | C++ | Output Limit Exceeded | 0 MS | 260 KB | 245 | 2025-12-21 11:40:16 |
#include<bits/stdc++.h> using namespace std; int main (){ int a,i,d,f,g; for(i=100;i<=999;i++){ d=i/100; f=i/10%10; g=i%10; if(d=f=g){ cout<<i<<" "; } } return 0; }