結果

問題 No.769 UNOシミュレータ
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2022-07-10 16:54:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 822 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 96,896 KB
最終ジャッジ日時 2024-06-11 06:13:11
合計ジャッジ時間 4,680 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 34 ms
52,224 KB
testcase_02 AC 34 ms
52,224 KB
testcase_03 AC 38 ms
52,736 KB
testcase_04 AC 51 ms
62,592 KB
testcase_05 AC 50 ms
63,104 KB
testcase_06 AC 49 ms
62,336 KB
testcase_07 AC 51 ms
62,464 KB
testcase_08 WA -
testcase_09 AC 90 ms
76,804 KB
testcase_10 AC 94 ms
76,964 KB
testcase_11 AC 100 ms
76,888 KB
testcase_12 AC 168 ms
81,232 KB
testcase_13 AC 145 ms
81,152 KB
testcase_14 WA -
testcase_15 AC 215 ms
88,704 KB
testcase_16 WA -
testcase_17 AC 220 ms
90,564 KB
testcase_18 WA -
testcase_19 AC 286 ms
96,128 KB
testcase_20 AC 289 ms
96,896 KB
testcase_21 WA -
testcase_22 AC 36 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

bufio_scanner = []


def fmt_scan() -> str:
    sc = bufio_scanner
    if len(sc) == 0:
        for v in reversed(input().split()):
            sc.append(v)
    return sc.pop()


def main():
    n, m = [int(fmt_scan()) for _ in range(2)]
    a = [[] for _ in range(n)]
    ad = [0 for _ in range(n)]

    i = 0
    r = 1
    k = 1
    pre = ""
    for j in range(m - 1):
        s = fmt_scan()
        if pre in ["drawtwo", "drawfour"]:
            if s != pre:
                ad[i % n] += 2 * k if "two" in pre else 4 * k
                i += r
                k = 1
            else:
                k += 1
        a[i % n].append(s)
        if s == "skip":
            i += r
        elif s == "reverse":
            r *= -1

        i += r
        pre = s

    i %= n
    print(i + 1, len(a[i]) - ad[i] + 1)


main()
0