結果

問題 No.769 UNOシミュレータ
ユーザー TakoKurageTakoKurage
提出日時 2018-12-28 22:32:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 821 ms / 2,000 ms
コード長 798 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,184 KB
最終ジャッジ日時 2024-05-02 00:20:51
合計ジャッジ時間 7,014 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 24 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 51 ms
11,520 KB
testcase_10 AC 49 ms
11,392 KB
testcase_11 AC 50 ms
11,264 KB
testcase_12 AC 277 ms
16,512 KB
testcase_13 AC 287 ms
16,512 KB
testcase_14 AC 291 ms
16,640 KB
testcase_15 AC 539 ms
22,912 KB
testcase_16 AC 525 ms
22,784 KB
testcase_17 AC 542 ms
22,784 KB
testcase_18 AC 800 ms
28,928 KB
testcase_19 AC 790 ms
29,184 KB
testcase_20 AC 821 ms
28,928 KB
testcase_21 AC 805 ms
29,056 KB
testcase_22 AC 27 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = [int(_) for _ in input().split()]
l = [input() for _ in range(M)]

hands = [0] * N
turn = 0
acc2 = 0
acc4 = 0
direction = +1

def next_player():
    global turn
    turn = (turn + direction * distance) % N

for i, li in enumerate(l):

    distance = 1

    if acc2 > 0 and li != "drawtwo":
        hands[turn] += acc2
        acc2 = 0
        next_player()

    if acc4 > 0 and li != "drawfour":
        hands[turn] += acc4
        acc4 = 0
        next_player()

    if li == "drawtwo":
        acc2 += 2

    if li == "drawfour":
        acc4 += 4

    if li == "number":
        pass

    if li == "skip":
        distance = 2

    if li == "reverse":
        direction *= -1

    hands[turn] -= 1

    if i == M - 1:
        print(turn + 1, -hands[turn])
    else:
        next_player()
0