Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
97148 朱安然 老鼠喝水 C++ Wrong Answer 1 MS 272 KB 195 2024-11-10 14:09:46

Tests(0/10):


Code:

#include <bits/stdc++.h> using namespace std; int main(){ int t,b,c=0; cin>>t>>b; for(int i=0;i<5;i++){ cin>>b; if(t>=b){ c++; } } cout<<c<<endl; return 0; }


Run Info:

------Input------
7 4 17 2 4 1 7 4 4
------Answer-----
5
------Your output-----
4