結果

問題 No.1292 パタパタ三角形
ユーザー rlangevinrlangevin
提出日時 2023-10-08 01:42:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 751 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 115,748 KB
最終ジャッジ日時 2024-07-26 17:59:55
合計ジャッジ時間 2,610 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,556 KB
testcase_01 AC 34 ms
53,684 KB
testcase_02 AC 35 ms
52,208 KB
testcase_03 AC 35 ms
52,344 KB
testcase_04 AC 35 ms
53,288 KB
testcase_05 AC 34 ms
52,960 KB
testcase_06 AC 35 ms
52,408 KB
testcase_07 AC 106 ms
89,428 KB
testcase_08 AC 103 ms
88,924 KB
testcase_09 AC 128 ms
115,692 KB
testcase_10 AC 132 ms
115,748 KB
testcase_11 AC 125 ms
115,572 KB
testcase_12 AC 104 ms
105,068 KB
testcase_13 AC 110 ms
113,092 KB
testcase_14 AC 62 ms
74,760 KB
testcase_15 AC 61 ms
74,472 KB
testcase_16 AC 60 ms
75,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = list(input())
SS = set()
x, y = 0, 0
SS.add((0, 0))
for s in S:
    if s == "a":
        if x % 3 == 1:
            x += 1
        elif x % 3 == 2:
            x -= 1
        else:
            if (x - 3 * y) % 6 == 0:
                y -= 1
            else:
                y += 1
    elif s == "b":
        if x % 3 == 0:
            x += 1
        elif x % 3 == 1:
            x -= 1
        else:
            if (x - 3 * y) % 6 == 2:
                y -= 1
            else:
                y += 1
    else:
        if x % 3 == 2:
            x += 1
        elif x % 3 == 0:
            x -= 1
        else:
            if (x - 3 * y) % 6 == 4:
                y -= 1
            else:
                y += 1
    SS.add((x, y))

print(len(SS))
0