| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 83942 | sh25_xuws | 同时被3、5、7整除的数 | C++ | Accepted | 0 MS | 244 KB | 186 | 2026-02-04 19:43:31 |
#include<iostream> using namespace std; int main(){ for(int i=1E8;i<=1e8;--i){ if(i%105==0){ cout<<i; break; } } return 0; }