結果

問題 No.1292 パタパタ三角形
ユーザー ayaoniayaoni
提出日時 2020-11-20 22:22:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 1,380 bytes
コンパイル時間 440 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 121,080 KB
最終ジャッジ日時 2024-07-23 13:18:11
合計ジャッジ時間 2,479 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,540 KB
testcase_01 AC 40 ms
52,596 KB
testcase_02 AC 41 ms
53,868 KB
testcase_03 AC 40 ms
52,332 KB
testcase_04 AC 39 ms
52,624 KB
testcase_05 AC 39 ms
53,296 KB
testcase_06 AC 40 ms
53,808 KB
testcase_07 AC 140 ms
82,628 KB
testcase_08 AC 138 ms
82,084 KB
testcase_09 AC 171 ms
108,884 KB
testcase_10 AC 168 ms
108,796 KB
testcase_11 AC 170 ms
109,092 KB
testcase_12 AC 146 ms
121,080 KB
testcase_13 AC 124 ms
107,204 KB
testcase_14 AC 72 ms
75,972 KB
testcase_15 AC 72 ms
75,832 KB
testcase_16 AC 70 ms
75,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def S(): return sys.stdin.readline().rstrip()


S = S()
ANS = set()

state = 1
a,b,c = 0,0,0
ANS.add((a,b,c))

for s in S:
    if state == 1:
        if s == 'a':
            state = 2
            a += 1
        elif s == 'b':
            state = 3
            b += 1
        else:
            state = 4
            c += 1
    elif state == 2:
        if s == 'a':
            state = 1
            a += -1
        elif s == 'b':
            state = 5
            c += -1
        else:
            state = 6
            b += -1
    elif state == 3:
        if s == 'a':
            state = 6
            c += -1
        elif s == 'b':
            state = 1
            b += -1
        else:
            state = 5
            a += -1
    elif state == 4:
        if s == 'a':
            state = 5
            b += -1
        elif s == 'b':
            state = 6
            a += -1
        else:
            state = 1
            c += -1
    elif state == 5:
        if s == 'a':
            state = 4
            b += 1
        elif s == 'b':
            state = 2
            c += 1
        else:
            state = 3
            a += 1
    else:
        if s == 'a':
            state = 3
            c += 1
        elif s == 'b':
            state = 4
            a += 1
        else:
            state = 2
            b += 1
    ANS.add((a,b,c))

print(len(ANS))
0