| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 52067 | 张思存 | 陶陶摘苹果 | C++ | Wrong Answer | 0 MS | 248 KB | 211 | 2024-09-27 15:29:29 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,m,num=0; cin>>m; m+=30; for(int i=0;i<10;i++){ cin>>a; if(a<m||a==m){ num += 1; } } cout<<num; return 0; }