結果

問題 No.1292 パタパタ三角形
ユーザー lloyzlloyz
提出日時 2022-09-24 00:07:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 568 ms / 2,000 ms
コード長 617 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 49,908 KB
最終ジャッジ日時 2024-06-01 18:37:30
合計ジャッジ時間 6,502 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 454 ms
20,280 KB
testcase_08 AC 450 ms
19,516 KB
testcase_09 AC 568 ms
49,908 KB
testcase_10 AC 559 ms
49,568 KB
testcase_11 AC 568 ms
48,864 KB
testcase_12 AC 543 ms
45,564 KB
testcase_13 AC 549 ms
45,564 KB
testcase_14 AC 374 ms
12,544 KB
testcase_15 AC 381 ms
12,544 KB
testcase_16 AC 368 ms
12,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = list(input())

n = len(S)
ans = set([(1, 1, 1)])
curr = [[1, 0, 0], [0, 1, 0], [0, 0, 1]]
for i in range(n):
    if S[i] == 'a':
        for j in range(3):
            curr[0][j] = -curr[0][j] + curr[1][j] + curr[2][j]
    elif S[i] == 'b':
        for j in range(3):
            curr[1][j] = curr[0][j] - curr[1][j] + curr[2][j]
    elif S[i] == 'c':
        for j in range(3):
            curr[2][j] = curr[0][j] + curr[1][j] - curr[2][j]
    g = (curr[0][0] + curr[1][0] + curr[2][0],
         curr[0][1] + curr[1][1] + curr[2][1],
         curr[0][2] + curr[1][2] + curr[2][2])
    ans.add(g)
print(len(ans))
0