結果

問題 No.769 UNOシミュレータ
ユーザー rein4threin4th
提出日時 2018-12-17 12:52:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,179 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 38,636 KB
最終ジャッジ日時 2024-05-02 00:11:29
合計ジャッジ時間 8,308 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,700 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 34 ms
10,880 KB
testcase_05 AC 35 ms
10,752 KB
testcase_06 AC 33 ms
10,880 KB
testcase_07 AC 35 ms
10,880 KB
testcase_08 AC 35 ms
10,880 KB
testcase_09 WA -
testcase_10 AC 73 ms
11,392 KB
testcase_11 AC 72 ms
11,648 KB
testcase_12 WA -
testcase_13 AC 1,241 ms
17,792 KB
testcase_14 AC 1,244 ms
17,664 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())

L = list(input() for i in range(M))
D = {}
D_debt = {}
for i in range(N) :
    D[i+1] = 0
    D_debt[i+1] = 0

turn = 1
reverse = 0
debt = 0
state = ""
def next() :
    global turn
    if reverse == 1 : turn -= 1
    else : turn += 1
    if turn == 0 : turn = N
    elif turn == N+1 : turn = 1
    return turn

def judge(L) :
    if len(L) == 0 : print(turn, D[turn]-D_debt[turn])

while len(L) != 0 :
    if state == "skip" :
        state = ""
    elif state == "drawtwo" :
        if L[0] == state :
            D[turn] += 1
            debt += 2
            L.pop(0)
        else :
            D_debt[turn] += debt
            debt = 0
            state = ""
    elif state == "drawfour" :
        if L[0] == state :
            D[turn] += 1
            debt += 4
            L.pop(0)
        else :
            D_debt[turn] += debt
            debt = 0
            state = ""
    else :
        state = L.pop(0)
        D[turn] += 1
    if state == "reverse" :
        reverse = (reverse + 1) % 2
        state = ""
    elif state == "drawtwo" :
        debt = 2
    elif state == "drawfour" :
        debt = 4
    judge(L)
    turn = next()
0