結果

問題 No.504 ゲーム大会(ランキング)
ユーザー KazunKazun
提出日時 2020-10-03 03:35:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 257 ms / 2,000 ms
コード長 129 bytes
コンパイル時間 483 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 76,436 KB
最終ジャッジ日時 2024-07-18 04:01:46
合計ジャッジ時間 3,810 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,548 KB
testcase_01 AC 32 ms
51,872 KB
testcase_02 AC 32 ms
53,184 KB
testcase_03 AC 32 ms
52,404 KB
testcase_04 AC 32 ms
52,020 KB
testcase_05 AC 32 ms
52,612 KB
testcase_06 AC 33 ms
52,604 KB
testcase_07 AC 250 ms
76,412 KB
testcase_08 AC 248 ms
76,436 KB
testcase_09 AC 252 ms
76,220 KB
testcase_10 AC 245 ms
76,164 KB
testcase_11 AC 257 ms
76,404 KB
testcase_12 AC 247 ms
76,128 KB
testcase_13 AC 231 ms
76,428 KB
testcase_14 AC 242 ms
76,228 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