Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
83428 sh25_shengmy 同时被3、5、7整除的数 C++ 通过 0 MS 240 KB 191 2026-01-25 22:31:49

Tests(1/1):


#include<iostream> using namespace std; int main(){ int z=1E8; for(;z>=1;--z){ if(z%105==0){ cout<<z; break; } } return 0; }


测评信息: