結果

問題 No.1292 パタパタ三角形
ユーザー Kiri8128Kiri8128
提出日時 2020-11-20 21:59:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,282 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 13,056 KB
実行使用メモリ 47,148 KB
最終ジャッジ日時 2024-07-23 12:58:38
合計ジャッジ時間 4,773 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 WA -
testcase_04 AC 30 ms
10,752 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 284 ms
19,088 KB
testcase_08 WA -
testcase_09 AC 391 ms
45,556 KB
testcase_10 AC 390 ms
45,116 KB
testcase_11 AC 403 ms
44,764 KB
testcase_12 AC 381 ms
40,804 KB
testcase_13 AC 422 ms
47,148 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

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((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