結果

問題 No.1292 パタパタ三角形
ユーザー Kiri8128Kiri8128
提出日時 2020-11-20 22:03:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 422 ms / 2,000 ms
コード長 1,290 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 13,056 KB
実行使用メモリ 47,148 KB
最終ジャッジ日時 2024-07-23 13:02:06
合計ジャッジ時間 4,377 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 290 ms
18,968 KB
testcase_08 AC 278 ms
18,608 KB
testcase_09 AC 403 ms
45,556 KB
testcase_10 AC 410 ms
45,124 KB
testcase_11 AC 407 ms
44,780 KB
testcase_12 AC 390 ms
40,860 KB
testcase_13 AC 422 ms
47,148 KB
testcase_14 AC 256 ms
12,988 KB
testcase_15 AC 250 ms
12,928 KB
testcase_16 AC 212 ms
12,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A = [ord(a) - 97 for a in input()]
N = len(A)
x, y = 0, 0
U = [(1, -1), (-1, 1), (-1, -1)]
S = set()
S.add((0, 0))
for i, a in enumerate(A):
    x += U[a][0]
    y += U[a][1]
    S.add((x, y))
    if i % 2 == 0:
        if U[a] == (1, -1):
            U[a] = (-1, 1)
            if U[a-1] == (-1, 1):
                U[a-1] = (1, 1)
                U[a-2] = (1, -1)
            else:
                U[a-1] = (1, -1)
                U[a-2] = (1, 1)
        elif U[a] == (-1, 1):
            U[a] = (1, -1)
            if U[a-1] == (1, -1):
                U[a-1] = (1, 1)
                U[a-2] = (-1, 1)
            else:
                U[a-1] = (-1, 1)
                U[a-2] = (1, 1)
        else:
            U[a] = (1, 1)
        
    else:
        if U[a] == (1, -1):
            U[a] = (-1, 1)
            if U[a-1] == (1, 1):
                U[a-1] = (1, -1)
                U[a-2] = (-1, -1)
            else:
                U[a-1] = (-1, -1)
                U[a-2] = (1, -1)
        elif U[a] == (-1, 1):
            U[a] = (1, -1)
            if U[a-1] == (1, 1):
                U[a-1] = (-1, 1)
                U[a-2] = (-1, -1)
            else:
                U[a-1] = (-1, -1)
                U[a-2] = (-1, 1)
        else:
            U[a] = (-1, -1)
print(len(list(S)))
0