| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 82984 | sh25_zhuhy | 同时被3、5、7整除的数 | C++ | Accepted | 0 MS | 240 KB | 183 | 2026-01-18 19:29:35 |
#include<bits/stdc++.h> using namespace std; int main(){ for(int i=1e8;i>=1;--i){ if(i%105==0){ cout<<i; break; }} return 0; }