結果

問題 No.2147 ハノイの塔のおもちゃ
ユーザー hotman78hotman78
提出日時 2022-12-04 10:23:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 376 bytes
コンパイル時間 1,000 ms
コンパイル使用メモリ 81,936 KB
実行使用メモリ 67,344 KB
最終ジャッジ日時 2024-10-11 10:09:16
合計ジャッジ時間 1,647 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,116 KB
testcase_01 AC 38 ms
52,072 KB
testcase_02 AC 37 ms
52,696 KB
testcase_03 AC 37 ms
52,912 KB
testcase_04 AC 37 ms
53,100 KB
testcase_05 AC 39 ms
52,772 KB
testcase_06 AC 45 ms
61,356 KB
testcase_07 AC 53 ms
67,344 KB
testcase_08 AC 37 ms
52,804 KB
testcase_09 WA -
testcase_10 AC 52 ms
66,136 KB
testcase_11 AC 52 ms
66,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

dp=[0,0,0]
n=int(input())
s=input()
p2=1
for i in range(n):
    dp2=[0,0,0]
    for j in range(3):
        if ord(s[i])==(ord('A')+j):
            dp2[j]=min(dp[j],dp[(j+1)%3]+p2,dp[(j+2)%3]+p2)
        else:
            dp2[j]=min(dp[j]+p2*2+1,dp[ord(s[i])-ord('A')]+p2*2+1,dp[3-j-(ord(s[i])-ord('A'))]+p2+1)
    dp=dp2
    if i!=0:
        p2=p2*2+1
print(dp[0]%1000000007)
0