Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
132746 蔡胤泽 18陶陶摘苹果 C++ Accepted 2 MS 276 KB 283 2025-10-12 11:38:55

Tests(10/10):


Code:

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