結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
53,732 KB
testcase_01 AC 30 ms
53,340 KB
testcase_02 AC 35 ms
53,872 KB
testcase_03 AC 31 ms
52,988 KB
testcase_04 AC 42 ms
62,312 KB
testcase_05 AC 42 ms
61,792 KB
testcase_06 AC 42 ms
62,308 KB
testcase_07 AC 60 ms
61,904 KB
testcase_08 AC 43 ms
62,656 KB
testcase_09 AC 101 ms
76,608 KB
testcase_10 AC 98 ms
76,648 KB
testcase_11 AC 91 ms
76,372 KB
testcase_12 AC 165 ms
77,580 KB
testcase_13 AC 162 ms
77,560 KB
testcase_14 AC 172 ms
77,228 KB
testcase_15 AC 208 ms
78,028 KB
testcase_16 AC 216 ms
78,236 KB
testcase_17 AC 196 ms
78,188 KB
testcase_18 AC 219 ms
78,260 KB
testcase_19 AC 220 ms
79,268 KB
testcase_20 AC 234 ms
79,068 KB
testcase_21 AC 257 ms
79,276 KB
testcase_22 AC 33 ms
52,272 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