結果

問題 No.1292 パタパタ三角形
ユーザー Kite_kumaKite_kuma
提出日時 2020-11-20 21:56:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 601 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 107,472 KB
最終ジャッジ日時 2024-07-23 12:56:28
合計ジャッジ時間 2,039 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 38 ms
51,692 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 35 ms
51,584 KB
testcase_05 AC 37 ms
52,472 KB
testcase_06 AC 38 ms
53,080 KB
testcase_07 AC 104 ms
81,316 KB
testcase_08 AC 99 ms
80,980 KB
testcase_09 AC 121 ms
106,860 KB
testcase_10 AC 124 ms
107,472 KB
testcase_11 AC 121 ms
106,792 KB
testcase_12 AC 101 ms
99,500 KB
testcase_13 AC 108 ms
100,320 KB
testcase_14 AC 57 ms
65,448 KB
testcase_15 AC 57 ms
65,844 KB
testcase_16 AC 56 ms
66,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()

x = 0
y = 0
cnt = 0

se = set()
se.add((0, 0))


for c in s:
    t = 0
    if c == 'b':
        t = 1
    elif c == 'c':
        t = 2
    # if cnt % 2 == 0:
    now = -x + 2 * t
    now %= 3
    if now == 0:
        if cnt % 2 == 0:
            y -= 1
        else:
            y += 1
    if now == 2:
        x += 1
    if now == 1:
        x -= 1
    # # else:
    #     now = t * 2-x
    #     now %= 3
    #     if now == 0:
    #         y += 1
    #     if now == 1:
    #         x += 1
    #     if now == 2:
    #         x -= 1
    se.add((x, y))
    cnt += 1


print(len(se))
0