結果

問題 No.1542 ぽんぽんぽん ぽんぽんぽんぽん ぽんぽんぽん
ユーザー そすうぽよそすうぽよ
提出日時 2021-05-29 10:50:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 766 ms / 2,000 ms
コード長 674 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 78,464 KB
最終ジャッジ日時 2024-04-25 09:42:52
合計ジャッジ時間 12,950 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 51 ms
61,696 KB
testcase_04 AC 80 ms
74,240 KB
testcase_05 AC 104 ms
76,544 KB
testcase_06 AC 304 ms
77,568 KB
testcase_07 AC 84 ms
76,416 KB
testcase_08 AC 585 ms
78,208 KB
testcase_09 AC 151 ms
76,544 KB
testcase_10 AC 646 ms
78,208 KB
testcase_11 AC 583 ms
78,336 KB
testcase_12 AC 72 ms
68,224 KB
testcase_13 AC 120 ms
76,416 KB
testcase_14 AC 419 ms
77,824 KB
testcase_15 AC 90 ms
76,288 KB
testcase_16 AC 240 ms
77,056 KB
testcase_17 AC 37 ms
52,352 KB
testcase_18 AC 89 ms
76,288 KB
testcase_19 AC 82 ms
76,032 KB
testcase_20 AC 467 ms
78,080 KB
testcase_21 AC 38 ms
52,096 KB
testcase_22 AC 318 ms
77,184 KB
testcase_23 AC 684 ms
78,208 KB
testcase_24 AC 704 ms
78,208 KB
testcase_25 AC 679 ms
78,208 KB
testcase_26 AC 718 ms
78,336 KB
testcase_27 AC 707 ms
78,208 KB
testcase_28 AC 677 ms
78,336 KB
testcase_29 AC 766 ms
78,336 KB
testcase_30 AC 674 ms
78,080 KB
testcase_31 AC 681 ms
78,464 KB
testcase_32 AC 739 ms
78,208 KB
権限があれば一括ダウンロードができます

ソースコード

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