結果

問題 No.769 UNOシミュレータ
ユーザー daku9640daku9640
提出日時 2018-12-25 22:28:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 706 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-05-02 00:17:40
合計ジャッジ時間 6,658 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,624 KB
testcase_01 AC 32 ms
10,496 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 33 ms
10,624 KB
testcase_05 AC 34 ms
10,752 KB
testcase_06 AC 33 ms
10,752 KB
testcase_07 AC 33 ms
10,496 KB
testcase_08 AC 34 ms
10,752 KB
testcase_09 AC 53 ms
10,624 KB
testcase_10 AC 53 ms
10,752 KB
testcase_11 AC 52 ms
10,752 KB
testcase_12 AC 254 ms
10,624 KB
testcase_13 AC 250 ms
10,752 KB
testcase_14 AC 254 ms
10,880 KB
testcase_15 AC 479 ms
11,392 KB
testcase_16 AC 470 ms
11,392 KB
testcase_17 AC 482 ms
11,392 KB
testcase_18 AC 693 ms
12,032 KB
testcase_19 AC 701 ms
12,288 KB
testcase_20 AC 692 ms
12,160 KB
testcase_21 AC 700 ms
12,160 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

draw = {"drawtwo":2, "drawfour":4}
def solve():
    n, m = map(int, input().split())
    fi = [0] * n
    se = [0] * n
    cnt = 1
    draw_cnt = 0
    no = 0
    last = ""
    for _ in range(m):
        l = input()
        if l != last and "draw" in last:
            se[no] += draw[last] * draw_cnt
            no = (no + cnt) % n
            draw_cnt = 0
        if se[no] == 0:
            fi[no] += 1
        else:
            se[no] -= 1
        if "draw" in l:
            draw_cnt += 1
        elif "skip" == l:
            no = (no + cnt) % n
        elif "reverse" == l:
            cnt *= -1
        no = (no + cnt) % n
        last = l
    no = (no - cnt) % n
    print(no + 1, fi[no])
solve()
0