Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
111512 任紫谦 15相同数的次数 C++ Accepted 0 MS 260 KB 326 2025-03-02 15:03:54

Tests(1/1):


Code:

#include <iostream> using namespace std; int main(){ int n=0,xt=0,xl=0,c=0; while(n<1000){ xt++; if(xt==21){ xt=1; } xl++; if(xl==31){ xl=1; } if(xt==xl){ c++; } n++; } cout<<c<<endl; }