結果

問題 No.769 UNOシミュレータ
ユーザー maspymaspy
提出日時 2020-05-01 18:31:24
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 935 bytes
コンパイル時間 474 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2024-12-24 13:42:15
合計ジャッジ時間 5,295 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,624 KB
testcase_01 AC 34 ms
10,496 KB
testcase_02 AC 33 ms
10,368 KB
testcase_03 AC 32 ms
10,368 KB
testcase_04 AC 35 ms
10,624 KB
testcase_05 AC 34 ms
10,368 KB
testcase_06 AC 36 ms
10,624 KB
testcase_07 AC 35 ms
10,496 KB
testcase_08 AC 35 ms
10,368 KB
testcase_09 AC 46 ms
10,880 KB
testcase_10 AC 44 ms
10,752 KB
testcase_11 AC 44 ms
10,880 KB
testcase_12 AC 152 ms
12,032 KB
testcase_13 AC 152 ms
12,032 KB
testcase_14 AC 160 ms
11,904 KB
testcase_15 AC 278 ms
13,596 KB
testcase_16 AC 272 ms
13,336 KB
testcase_17 AC 275 ms
13,340 KB
testcase_18 AC 396 ms
14,720 KB
testcase_19 AC 397 ms
14,848 KB
testcase_20 AC 409 ms
14,720 KB
testcase_21 AC 392 ms
14,720 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

N,M = map(int,readline().split())
LOG = read().decode()

LOG = LOG.replace('number','n')
LOG = LOG.replace('skip','s')
LOG = LOG.replace('drawtwo','2')
LOG = LOG.replace('drawfour','4')
LOG = LOG.replace('reverse', 'r')
LOG = LOG.split()

num = [0] * N
player = -1
dx = 1
draw_2 = 0
draw_4 = 0
for L in LOG:
    player += dx
    player %= N
    if draw_2 and L != '2':
        num[player] += 2 * draw_2
        draw_2 = 0
        player += dx
    if draw_4 and L != '4':
        num[player] += 4 * draw_4
        draw_4 = 0
        player += dx
    player %= N
    num[player] -= 1
    if L == 's':
        player += dx
    elif L == 'n':
        pass
    elif L == 'r':
        dx *= -1
    elif L == '2':
        draw_2 += 1
    elif L == '4':
        draw_4 += 1
    player %= N

x = -num[player]
print(player+1, x)
0