| 提出番号 | 923 |
|---|---|
| 提出者 | Polaris |
| 言語 | C++ |
| 提出日時 | 2017-08-01 15:47:24 |
| 問題名 | (26)たくさんの大きな栗の木の下で |
| 結果 | CE |
| 点数 | 0% |
| テストケース | 結果 | 得点 | 実行時間 | メモリ使用量 |
|---|---|---|---|---|
| 1 | CE | 0% | 0ms | 0KB |
| 2 | CE | 0% | 0ms | 0KB |
| 3 | CE | 0% | 0ms | 0KB |
| 4 | CE | 0% | 0ms | 0KB |
| 5 | CE | 0% | 0ms | 0KB |
using namespace std;
int main()
{
int olphe;
int kotamanegi;
int n;
int height;
int i;
int c;
cin >> olphe;
cin >> kotamanegi;
cin >> n;
c = 0;
for(i = 0;i < n;i++){
cin >> height;
if (height > olphe) && (height > kotamanegi) {
c++;
}
}
cout << c << endl;
return 0;
}