結果

問題 No.769 UNOシミュレータ
ユーザー 👑 rin204rin204
提出日時 2022-01-19 20:26:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 537 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-05-02 19:55:49
合計ジャッジ時間 4,275 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 45 ms
51,712 KB
testcase_02 AC 45 ms
52,224 KB
testcase_03 AC 46 ms
52,224 KB
testcase_04 AC 58 ms
60,800 KB
testcase_05 AC 60 ms
60,800 KB
testcase_06 AC 58 ms
60,544 KB
testcase_07 AC 60 ms
60,416 KB
testcase_08 WA -
testcase_09 AC 110 ms
76,160 KB
testcase_10 AC 113 ms
76,544 KB
testcase_11 AC 107 ms
76,160 KB
testcase_12 AC 149 ms
76,416 KB
testcase_13 AC 146 ms
76,544 KB
testcase_14 WA -
testcase_15 AC 186 ms
76,800 KB
testcase_16 WA -
testcase_17 AC 187 ms
76,928 KB
testcase_18 WA -
testcase_19 AC 226 ms
77,184 KB
testcase_20 AC 230 ms
77,184 KB
testcase_21 WA -
testcase_22 AC 42 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
i = 0
t = 1
bef = "_"
have = [0] * n
cnt = 0
for _ in range(m - 1):
    l = input()
    if l != bef and bef[0] == "d":
        if bef[4] == "t":
            have[i] -= 2 * cnt
        else:
            have[i] -= 4 * cnt
        cnt = 0
        i += t
        i %= n
    have[i] += 1
    if l[0] == "s":
        i += 2 * t
    elif l[0] == "r":
        t *= -1
        i += t
    elif l[0] == "d":
        i += t
        cnt += 1
    else:
        i += t
    i %= n
    bef = l

print(i + 1, have[i] + 1)
0