Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
335398 小林老师 【C3-T】韩信点兵 C++ 通过 100 1 MS 244 KB 195 2025-07-22 21:36:29

Tests(1/1):


#include <iostream> using namespace std; int main(){ int m,n,t; cin>>m>>n>>t; for(int i=1; ;i++){ if(i%3==m&&i%5==n&&i%7==t){ cout<<i; break; } } return 0; }


测评信息: