提交时间:2026-01-18 19:29:35
运行 ID: 82984
#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; }