結果

問題 No.504 ゲーム大会(ランキング)
ユーザー ohanaohana
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,484 KB
testcase_01 AC 36 ms
52,852 KB
testcase_02 AC 36 ms
52,528 KB
testcase_03 AC 37 ms
52,752 KB
testcase_04 AC 36 ms
52,076 KB
testcase_05 AC 37 ms
53,128 KB
testcase_06 AC 36 ms
52,676 KB
testcase_07 AC 284 ms
75,976 KB
testcase_08 AC 284 ms
76,012 KB
testcase_09 AC 284 ms
76,080 KB
testcase_10 AC 283 ms
76,108 KB
testcase_11 AC 282 ms
76,088 KB
testcase_12 AC 274 ms
76,112 KB
testcase_13 AC 268 ms
75,948 KB
testcase_14 AC 281 ms
75,884 KB
権限があれば一括ダウンロードができます

ソースコード

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