| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 3080 | 倪邢暄 | 陶陶摘苹果 | C++ | Accepted | 100 | 0 MS | 256 KB | 217 | 2019-12-13 20:07:44 |
#include<iostream> using namespace std; int main(){ int a[11]={0}; int b,r=0; for(int i=1;i<=10;i++){ cin>>a[i]; } cin>>b; for(int i=1;i<=10;i++){ if(a[i]<=b+30) r++; } cout<<r; return 0; }