結果

問題 No.769 UNOシミュレータ
ユーザー 👑 rin204rin204
提出日時 2022-01-19 20:28:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 206 ms / 2,000 ms
コード長 567 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-05-02 19:56:52
合計ジャッジ時間 4,183 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 51 ms
60,800 KB
testcase_05 AC 49 ms
60,416 KB
testcase_06 AC 50 ms
60,672 KB
testcase_07 AC 50 ms
60,672 KB
testcase_08 AC 50 ms
60,416 KB
testcase_09 AC 96 ms
76,288 KB
testcase_10 AC 98 ms
76,160 KB
testcase_11 AC 97 ms
76,032 KB
testcase_12 AC 142 ms
76,800 KB
testcase_13 AC 144 ms
76,288 KB
testcase_14 AC 146 ms
76,416 KB
testcase_15 AC 172 ms
76,672 KB
testcase_16 AC 171 ms
76,672 KB
testcase_17 AC 168 ms
76,928 KB
testcase_18 AC 201 ms
77,440 KB
testcase_19 AC 206 ms
77,440 KB
testcase_20 AC 204 ms
77,440 KB
testcase_21 AC 202 ms
77,312 KB
testcase_22 AC 37 ms
51,840 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