| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 151884 | 万麟峰 | 18陶陶摘苹果 | C++ | Accepted | 1 MS | 268 KB | 226 | 2026-04-19 11:47:38 |
#include<bits/stdc++.h> using namespace std; int main(){ int a[11],x,s=0; for(int i=1;i<=10;i++){ cin>>a[i]; } cin>>x; x+=30; for(int i=1;i<=10;i++){ if(x>=a[i]){ s++; } } cout<<s; return 0; }