結果

問題 No.769 UNOシミュレータ
ユーザー yansi819yansi819
提出日時 2024-05-13 12:53:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 302 ms / 2,000 ms
コード長 1,148 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 81,960 KB
実行使用メモリ 79,076 KB
最終ジャッジ日時 2024-12-20 09:27:01
合計ジャッジ時間 5,967 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,064 KB
testcase_01 AC 42 ms
52,504 KB
testcase_02 AC 43 ms
52,824 KB
testcase_03 AC 42 ms
53,612 KB
testcase_04 AC 55 ms
62,088 KB
testcase_05 AC 56 ms
60,700 KB
testcase_06 AC 57 ms
62,144 KB
testcase_07 AC 56 ms
62,960 KB
testcase_08 AC 55 ms
61,492 KB
testcase_09 AC 135 ms
76,532 KB
testcase_10 AC 129 ms
76,856 KB
testcase_11 AC 120 ms
76,272 KB
testcase_12 AC 210 ms
77,432 KB
testcase_13 AC 209 ms
77,480 KB
testcase_14 AC 208 ms
77,616 KB
testcase_15 AC 251 ms
77,624 KB
testcase_16 AC 251 ms
78,316 KB
testcase_17 AC 248 ms
77,908 KB
testcase_18 AC 291 ms
78,440 KB
testcase_19 AC 290 ms
79,076 KB
testcase_20 AC 300 ms
78,736 KB
testcase_21 AC 302 ms
78,664 KB
testcase_22 AC 42 ms
53,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def next_id():
    global id
    if reverse:
        id = N - 1 if id == 0 else id - 1
    else:
        id = (id + 1) % N

def Drawtwo():
    global drawtwo
    if drawtwo != 0:
        D[id] += drawtwo
        drawtwo = 0
        next_id()

def Drawfour():
    global drawfour
    if drawfour != 0:
        D[id] += drawfour
        drawfour = 0
        next_id()

N, M = map(int, input().split())
C, D = [0] * N, [0] * N
id = 0
reverse = False
skip = False
drawtwo = 0
drawfour = 0
for i in range(M):
    L = input()
    if L == "number":
        Drawtwo()
        Drawfour()
        C[id] += 1
    elif L == "drawtwo":
        Drawfour()
        C[id] += 1
        drawtwo += 2
    elif L == "drawfour":
        Drawtwo()
        C[id] += 1
        drawfour += 4
    elif L == "skip":
        Drawtwo()
        Drawfour()
        C[id] += 1
        skip = True
    elif L == "reverse":
        Drawtwo()
        Drawfour()
        C[id] += 1
        reverse = True if not reverse else False
    #print(C, D)
    if i == M - 1:
        print(id + 1, C[id] - D[id])
        break
    next_id()
    if skip:
        next_id()
        skip = False
0