| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 39883 | 闻航 | 陶陶摘苹果 | C++ | Accepted | 1 MS | 244 KB | 236 | 2024-02-05 12:58:02 |
#include<iostream> using namespace std; int a[10]; int main() { int height,S=0; for(int i=0;i<10;i++){ cin>>a[i]; } cin>>height; for(int i=0;i<10;i++){ if(a[i]<=height+30){ S++; } } cout<<S; return 0; }