| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 151912 | 王顺煜 | 18陶陶摘苹果 | C++ | Accepted | 1 MS | 276 KB | 237 | 2026-04-19 12:04:24 |
#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; for(int i=1;i<=10;i++){ if(x+30>=a[i])s++; } cout<<s; return 0; }