| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 140335 | 万麟峰 | 15相同数的次数 | C++ | Wrong Answer | 0 MS | 264 KB | 193 | 2025-12-14 11:15:49 |
#include<bits/stdc++.h> using namespace std; int main(){ int t=0,x=0; int i=1,n=0; while(i<1000){ t++; if(t<20)t=1; x++; if(t==x)n+=1; i++; } cout<<n; return 0; }
------Input------
0
------Answer-----
340
------Your output-----
1