| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 132103 | 蒋云帆 | 老鼠喝水 | C++ | Wrong Answer | 2 MS | 276 KB | 236 | 2025-10-05 18:37:57 |
#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(c>=b){ d++; }else{ } } cout<<d; return 0; }
------Input------
7 4 17 2 4 1 7 4 4
------Answer-----
5
------Your output-----
8032280