結果

問題 No.769 UNOシミュレータ
ユーザー 👑 rin204rin204
提出日時 2022-01-19 20:28:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 567 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 77,320 KB
最終ジャッジ日時 2024-11-23 14:02:48
合計ジャッジ時間 3,739 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 49 ms
61,056 KB
testcase_05 AC 50 ms
60,800 KB
testcase_06 AC 55 ms
61,056 KB
testcase_07 AC 50 ms
61,072 KB
testcase_08 AC 52 ms
61,056 KB
testcase_09 AC 100 ms
76,748 KB
testcase_10 AC 96 ms
76,544 KB
testcase_11 AC 93 ms
76,544 KB
testcase_12 AC 135 ms
76,720 KB
testcase_13 AC 132 ms
76,672 KB
testcase_14 AC 131 ms
76,540 KB
testcase_15 AC 170 ms
76,868 KB
testcase_16 AC 171 ms
76,956 KB
testcase_17 AC 174 ms
76,928 KB
testcase_18 AC 210 ms
77,184 KB
testcase_19 AC 206 ms
77,312 KB
testcase_20 AC 207 ms
77,196 KB
testcase_21 AC 214 ms
77,320 KB
testcase_22 AC 36 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
i = 0
t = 1
bef = "_"
have = [0] * n
cnt = 0
for j in range(m):
    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 j == m - 1:
        break
    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])
0