| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 151503 | 郑景文 | 18陶陶摘苹果 | C++ | Accepted | 1 MS | 268 KB | 249 | 2026-04-12 16:00:17 |
#include<bits/stdc++.h> using namespace std; int b[1000000]; int main() { int c,g=0; for(int n=1;n<=10;n++){ cin>>b[n]; } cin>>c; c=c+30; for(int n=1; n<=10; n++) { if(b[n]<=c) { g++; } } cout<<g; return 0; }