結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 42 ms
51,456 KB
testcase_02 AC 51 ms
52,096 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 61 ms
60,544 KB
testcase_05 AC 56 ms
61,056 KB
testcase_06 AC 56 ms
60,544 KB
testcase_07 AC 57 ms
60,800 KB
testcase_08 WA -
testcase_09 AC 105 ms
76,288 KB
testcase_10 AC 106 ms
76,160 KB
testcase_11 AC 107 ms
76,160 KB
testcase_12 AC 146 ms
76,544 KB
testcase_13 AC 142 ms
76,416 KB
testcase_14 WA -
testcase_15 AC 182 ms
77,056 KB
testcase_16 WA -
testcase_17 AC 188 ms
76,800 KB
testcase_18 WA -
testcase_19 AC 221 ms
77,696 KB
testcase_20 AC 230 ms
77,056 KB
testcase_21 WA -
testcase_22 AC 40 ms
51,968 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