Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
151883 张宇泽 18陶陶摘苹果 C++ Accepted 1 MS 272 KB 230 2026-04-19 11:45:21

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int b; int n[11],t=0; for(int i =1;i<=10;i++){ cin>>n[i]; } cin>>b; for(int i=1;i<=10;i++){ if(b+30>=n[i]){ t++; } } cout<<t; return 0; }