結果

問題 No.504 ゲーム大会(ランキング)
ユーザー ohana
提出日時 2023-10-23 16:36:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 143 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 76,112 KB
最終ジャッジ日時 2024-09-22 10:47:19
合計ジャッジ時間 4,767 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
cnt = 1
t = int(input())
print(cnt)
for i in range(n - 1):
    a = int(input())
    if t < a:
        cnt += 1
    print(cnt)
0