| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 82347 | sh25_shenpy | 同时被3、5、7整除的数 | C++ | Accepted | 0 MS | 240 KB | 196 | 2026-01-11 17:54:24 |
#include <bits/stdc++.h> using namespace std; int main() { for(int i=99999999;i>=1;--i){ if(i%105==0){ cout<<i; break; } } return 0; }