結果

問題 No.1292 パタパタ三角形
ユーザー AEnAEn
提出日時 2022-12-10 00:00:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 654 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 115,064 KB
最終ジャッジ日時 2024-10-14 23:12:31
合計ジャッジ時間 3,267 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 38 ms
51,712 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 166 ms
83,584 KB
testcase_08 AC 143 ms
83,216 KB
testcase_09 AC 206 ms
115,064 KB
testcase_10 AC 214 ms
114,592 KB
testcase_11 AC 210 ms
114,512 KB
testcase_12 AC 197 ms
112,524 KB
testcase_13 AC 188 ms
112,528 KB
testcase_14 AC 112 ms
76,128 KB
testcase_15 AC 109 ms
76,032 KB
testcase_16 AC 107 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
res = set()
posi = [0,0,0]
res.add(tuple(posi))
al = ['a','c','b',1]
for i in range(len(S)):
    id = al.index(S[i])
    if al[-1]==1:
        if id==0:
            posi[1]+=2
            al[0],al[1],al[2] = al[1],al[2],al[0]
        elif id==1:
            posi[2]+=2
        else:
            posi[0]+=2
            al[0],al[1],al[2] = al[2],al[0],al[1]
    else:
        if id==0:
            posi[0]-=2
            al[0],al[1],al[2] = al[1],al[2],al[0]
        elif id==1:
            posi[2]-=2
        else:
            posi[1]-=2
            al[0],al[1],al[2] = al[2],al[0],al[1]
    al[-1]*=-1
    res.add(tuple(posi))
print(len(res))
0