結果

問題 No.769 UNOシミュレータ
ユーザー rlangevinrlangevin
提出日時 2023-01-25 12:44:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 226 ms / 2,000 ms
コード長 1,124 bytes
コンパイル時間 1,895 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,508 KB
最終ジャッジ日時 2024-06-26 17:44:49
合計ジャッジ時間 4,992 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 40 ms
52,480 KB
testcase_03 AC 40 ms
52,480 KB
testcase_04 AC 52 ms
61,136 KB
testcase_05 AC 52 ms
60,928 KB
testcase_06 AC 53 ms
61,184 KB
testcase_07 AC 52 ms
60,544 KB
testcase_08 AC 53 ms
61,184 KB
testcase_09 AC 95 ms
76,600 KB
testcase_10 AC 110 ms
76,544 KB
testcase_11 AC 95 ms
76,544 KB
testcase_12 AC 151 ms
76,928 KB
testcase_13 AC 146 ms
76,584 KB
testcase_14 AC 150 ms
76,672 KB
testcase_15 AC 180 ms
77,252 KB
testcase_16 AC 189 ms
77,184 KB
testcase_17 AC 178 ms
76,780 KB
testcase_18 AC 225 ms
77,312 KB
testcase_19 AC 212 ms
77,508 KB
testcase_20 AC 226 ms
77,312 KB
testcase_21 AC 210 ms
77,504 KB
testcase_22 AC 46 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
now = 0
dr = 1
L = [0] * N
cnt2, cnt4 = 0, 0
for i in range(M):
    c = input()
    if cnt2:
        if c == "drawtwo":
            L[now] += 1
            cnt2 += 2
            if i == M - 1:
                now += 1
            else:
                now += dr
                now %= N

            continue
        else:
            L[now] -= cnt2
            cnt2 = 0
        now += dr
        now %= N
    if cnt4:
        if c == "drawfour":
            L[now] += 1
            cnt4 += 4
            if i == M - 1:
                now += 1
            else:
                now += dr
                now %= N
            continue
        else:
            L[now] -= cnt4
            cnt4 = 0
        now += dr
        now %= N
        
    L[now] += 1
    if c == "number":
        pass
    elif c == "drawtwo":
        cnt2 += 2
    elif c == "drawfour":
        cnt4 += 4
    elif c == "skip" and i != M - 1:
        now += dr
        now %= N
    else:
        dr *= -1
    
    if i == M - 1:
        now += 1
    else:
        now += dr
        now %= N
    
print(now, L[now - 1])
0