結果

問題 No.504 ゲーム大会(ランキング)
ユーザー brthyyjp
提出日時 2020-07-25 07:12:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 149 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 76,436 KB
最終ジャッジ日時 2024-06-26 09:55:33
合計ジャッジ時間 4,187 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = int(input())
temp = 1
print(temp)
for i in range(n-1):
    x = int(input())
    if x > a:
        temp += 1
    print(temp)    
0