| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 134303 | 张暄浩 | 15相同数的次数 | C++ | Accepted | 1 MS | 264 KB | 601 | 2025-10-26 17:04:20 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int n,xt,xl,count; n = xt = xl = count = 0; while(n < 1000){ xt++; if(xt == 21) xt = 1; xl++; if(xl == 31) xl = 1; if(xt == xl) count++; n++; } cout<<count<<endl; return 0; }