| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 309274 | 邵致远 | 【C2-10】求数 | C++ | Wrong Answer | 0 | 1 MS | 248 KB | 197 | 2025-02-16 15:21:36 |
#include<bits/stdc++.h> using namespace std; int main(){ int i; for(i=1;i<=999;i++){ if(i%3==0&&i%10==5||i/10%10==5||i/100%10==5) cout<<i; } return 0; }