結果
| 問題 |
No.504 ゲーム大会(ランキング)
|
| コンテスト | |
| ユーザー |
focus
|
| 提出日時 | 2018-02-15 14:13:15 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 238 bytes |
| コンパイル時間 | 511 ms |
| コンパイル使用メモリ | 57,820 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-26 00:22:29 |
| 合計ジャッジ時間 | 2,758 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 13 |
ソースコード
#include<iostream>
#include<cmath>
using namespace std;
int main(){
long long N,A,x,count=1;
cin >> N >> A;
for(int i=1;i<N;i++){
cin >> x;
if(A<x) count++;
cout << count << endl;
}
return 0;
}
focus