結果

問題 No.1292 パタパタ三角形
ユーザー tamatotamato
提出日時 2020-11-20 22:13:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 964 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,728 KB
実行使用メモリ 99,884 KB
最終ジャッジ日時 2024-07-23 13:10:30
合計ジャッジ時間 2,213 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,324 KB
testcase_01 AC 38 ms
52,820 KB
testcase_02 AC 38 ms
53,508 KB
testcase_03 AC 38 ms
53,548 KB
testcase_04 AC 38 ms
52,396 KB
testcase_05 AC 39 ms
52,660 KB
testcase_06 AC 38 ms
52,788 KB
testcase_07 AC 80 ms
80,124 KB
testcase_08 AC 81 ms
79,760 KB
testcase_09 AC 108 ms
99,868 KB
testcase_10 AC 107 ms
99,884 KB
testcase_11 AC 104 ms
99,744 KB
testcase_12 AC 99 ms
96,092 KB
testcase_13 AC 100 ms
95,684 KB
testcase_14 AC 65 ms
76,012 KB
testcase_15 AC 65 ms
76,116 KB
testcase_16 AC 66 ms
75,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    S = input().rstrip('\n')

    up = {(0, 0)}
    down = set()
    x, y = 0, 0
    flg = 0
    D = [0, 1, 2]
    for ss in S:
        s = ord(ss) - 97
        #print(D)
        if flg == 0:
            if D[s] == 0:
                x -= 1
            elif D[s] == 1:
                y += 1
                D[0], D[1], D[2] = D[1], D[2], D[0]
            else:
                D[0], D[1], D[2] = D[2], D[0], D[1]
            flg = 1
            down.add((x, y))
        else:
            if D[s] == 0:
                x += 1
            elif D[s] == 1:
                D[0], D[1], D[2] = D[1], D[2], D[0]
            else:
                y -= 1
                D[0], D[1], D[2] = D[2], D[0], D[1]
            flg = 0
            up.add((x, y))
        #print(x, y, D)
    print(len(up) + len(down))
    #print(up)
    #print(down)


if __name__ == '__main__':
    main()
0