| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 3007 | 李言 | 陶陶摘苹果 | C++ | Accepted | 100 | 0 MS | 252 KB | 236 | 2019-12-09 20:39:41 |
#include<iostream> using namespace std; int main(){ int a[10]={0}; int i,m=0; for(int n=0;n<10;n++){ cin>>a[n]; } cin>>i; i+=30; for(int n=0;n<10;n++){ if(i>a[n]){ m++; } } m++; cout<<m; return 0; }