結果

問題 No.504 ゲーム大会(ランキング)
ユーザー 👑 KazunKazun
提出日時 2020-10-03 03:35:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 324 ms / 2,000 ms
コード長 129 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 87,084 KB
実行使用メモリ 78,072 KB
最終ジャッジ日時 2023-09-25 04:38:46
合計ジャッジ時間 4,477 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
71,216 KB
testcase_01 AC 75 ms
71,436 KB
testcase_02 AC 75 ms
71,248 KB
testcase_03 AC 74 ms
71,416 KB
testcase_04 AC 74 ms
71,572 KB
testcase_05 AC 74 ms
71,372 KB
testcase_06 AC 77 ms
71,244 KB
testcase_07 AC 316 ms
78,072 KB
testcase_08 AC 314 ms
77,900 KB
testcase_09 AC 310 ms
77,812 KB
testcase_10 AC 305 ms
77,408 KB
testcase_11 AC 313 ms
77,964 KB
testcase_12 AC 301 ms
77,388 KB
testcase_13 AC 296 ms
77,188 KB
testcase_14 AC 324 ms
77,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
alpha=int(input())

K=1
print(1)
for _ in range(N-1):
    a=int(input())
    if a>alpha:
        K+=1
    print(K)
0