結果

問題 No.504 ゲーム大会(ランキング)
ユーザー iad_2889iad_2889
提出日時 2019-05-18 07:07:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 360 ms / 2,000 ms
コード長 379 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,048 KB
最終ジャッジ日時 2024-09-17 06:06:01
合計ジャッジ時間 4,190 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 360 ms
17,920 KB
testcase_08 AC 353 ms
18,048 KB
testcase_09 AC 357 ms
17,792 KB
testcase_10 AC 345 ms
17,792 KB
testcase_11 AC 351 ms
17,792 KB
testcase_12 AC 345 ms
16,384 KB
testcase_13 AC 342 ms
16,384 KB
testcase_14 AC 348 ms
17,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def next_player(num):
    current = 0
    while True:
        yield current
        current+=1
        current%=num

N = int(input())
np = next_player(N)
plays = map(int,[input() for x in range(N)])
k_score = 0
k_rank = 1
for play in plays:
    current = next(np)
    if current:
        if play > k_score:
            k_rank+=1
    else:
        k_score = play
    print(k_rank)
0