| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 132122 | 张咏灏 | 老鼠喝水 | C++ | Wrong Answer | 1 MS | 268 KB | 212 | 2025-10-06 12:19:43 |
#include<iostream> using namespace std; int main(){ int a,b,c,d; cin>>a>>b; for(int i=0;i<a;i++){ cin>>c; if(b>=c){ d++; } } cout<<d; return 0; }
------Input------
7 4 17 2 4 1 7 4 4
------Answer-----
5
------Your output-----
8032285