結果

問題 No.504 ゲーム大会(ランキング)
ユーザー focus
提出日時 2018-02-15 14:12:19
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 226 bytes
コンパイル時間 567 ms
コンパイル使用メモリ 56,924 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-26 00:22:21
合計ジャッジ時間 1,856 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other AC * 1 WA * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
    return 0;
}
0