| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 12519 | A班-袁誉晏 | 找数游戏 | C++ | Wrong Answer | 0 | 1 MS | 264 KB | 244 | 2025-07-22 10:05:08 |
#include <bits/stdc++.h> using namespace std; void shu() { for(int i=100;i<=999;i++) { int g=i%10; int s=i/10%10; int b=i/100; if(s>g+b && (s+b)%i!=1) { cout<<i<<endl; } } } int main() { shu(); return 0; }