結果

問題 No.504 ゲーム大会(ランキング)
ユーザー ああいいああいい
提出日時 2022-01-09 23:06:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 123 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 77,424 KB
最終ジャッジ日時 2024-11-14 10:35:20
合計ジャッジ時間 2,913 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,076 KB
testcase_01 AC 37 ms
53,416 KB
testcase_02 AC 37 ms
52,876 KB
testcase_03 AC 37 ms
51,884 KB
testcase_04 AC 36 ms
53,052 KB
testcase_05 AC 37 ms
52,896 KB
testcase_06 AC 37 ms
52,612 KB
testcase_07 AC 114 ms
77,288 KB
testcase_08 AC 113 ms
77,332 KB
testcase_09 AC 116 ms
77,268 KB
testcase_10 AC 113 ms
77,424 KB
testcase_11 AC 114 ms
77,244 KB
testcase_12 AC 110 ms
77,312 KB
testcase_13 AC 106 ms
77,128 KB
testcase_14 AC 117 ms
76,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
a = [int(input()) for _ in range(N)]

now = 1
for i in a:
    if i > a[0]:
        now += 1
    print(now)
0