結果

問題 No.1292 パタパタ三角形
ユーザー tsuzuiritsuzuiri
提出日時 2020-11-26 00:04:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 1,103 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 40,992 KB
最終ジャッジ日時 2024-07-23 19:33:54
合計ジャッジ時間 2,581 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,368 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 30 ms
10,368 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 29 ms
10,368 KB
testcase_05 AC 29 ms
10,496 KB
testcase_06 AC 30 ms
10,368 KB
testcase_07 AC 108 ms
19,508 KB
testcase_08 AC 104 ms
18,792 KB
testcase_09 AC 168 ms
40,380 KB
testcase_10 AC 165 ms
40,588 KB
testcase_11 AC 166 ms
40,100 KB
testcase_12 AC 168 ms
40,844 KB
testcase_13 AC 178 ms
40,992 KB
testcase_14 AC 77 ms
13,688 KB
testcase_15 AC 79 ms
13,816 KB
testcase_16 AC 80 ms
13,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def p2(data):
    inputs=list(data)
    ref = 0
    x=0
    y=0
    inv=0
    history = set()
    history.add((x,y))
    for _in in inputs:
        if 0==ref:
            if _in == 'a':
                if inv:
                    y+=1
                else:
                    y-=1
            elif _in == 'b':
                x+=1
                ref=2
            else:
                x-=1
                ref=1
        elif 1==ref:
            if _in == 'b':
                if inv:
                    y+=1
                else:
                    y-=1
            elif _in == 'c':
                x+=1
                ref=0
            else:
                x-=1
                ref=2
        else:
            if _in == 'c':
                if inv:
                    y+=1
                else:
                    y-=1
            elif _in == 'a':
                x+=1
                ref=1
            else:
                x-=1
                ref=0
        history.add((x,y))
        inv^=1
    print(len(history))


from sys import stdin
input = stdin.readline

p2(list(input().rstrip()))
0