結果

問題 No.1542 ぽんぽんぽん ぽんぽんぽんぽん ぽんぽんぽん
ユーザー そすうぽよそすうぽよ
提出日時 2021-05-29 10:50:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 674 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 17,024 KB
最終ジャッジ日時 2024-11-07 20:17:28
合計ジャッジ時間 4,470 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,000 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 35 ms
10,880 KB
testcase_04 AC 113 ms
10,752 KB
testcase_05 AC 513 ms
11,008 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
dp = [[0 for j in range(n+1)] for i in range(n+1)]
for l in range(1,n+1):
    for i in range(n):
        if i + l > n:
            break
        for j in range(i-1,i+l-1):
            l_prev = j - i + 1
            if s[i+l-1] != "pon"[dp[l_prev][i] % 3]:
                continue
            l_inner = (i+l-2) - (j+1) + 1
            inner = dp[l_inner][j+1]
            inner -= inner % 3
            dp[l][i] = max(dp[l][i], dp[l_prev][i] + inner + 1)
        dp[l][i] = max(dp[l][i], dp[l-1][i])

mx = -1
for i in range(1,n-1):
    l = dp[i][0] // 3
    r = dp[n-i][i] // 3
    if l > 0 and r > 0:
        mx = max(mx, l + r - 2)

print(mx)
0