結果

問題 No.1542 ぽんぽんぽん ぽんぽんぽんぽん ぽんぽんぽん
ユーザー そすうぽよそすうぽよ
提出日時 2021-05-29 10:50:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 807 ms / 2,000 ms
コード長 674 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 78,464 KB
最終ジャッジ日時 2024-11-07 20:17:55
合計ジャッジ時間 13,903 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,096 KB
testcase_01 AC 43 ms
52,096 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 AC 55 ms
61,952 KB
testcase_04 AC 86 ms
74,240 KB
testcase_05 AC 108 ms
76,672 KB
testcase_06 AC 316 ms
77,056 KB
testcase_07 AC 91 ms
76,288 KB
testcase_08 AC 611 ms
78,080 KB
testcase_09 AC 163 ms
77,056 KB
testcase_10 AC 671 ms
78,464 KB
testcase_11 AC 577 ms
77,824 KB
testcase_12 AC 71 ms
68,096 KB
testcase_13 AC 123 ms
76,416 KB
testcase_14 AC 416 ms
77,440 KB
testcase_15 AC 92 ms
76,032 KB
testcase_16 AC 258 ms
76,800 KB
testcase_17 AC 43 ms
52,096 KB
testcase_18 AC 99 ms
76,544 KB
testcase_19 AC 89 ms
76,288 KB
testcase_20 AC 502 ms
77,952 KB
testcase_21 AC 42 ms
51,840 KB
testcase_22 AC 340 ms
77,056 KB
testcase_23 AC 734 ms
78,336 KB
testcase_24 AC 727 ms
78,208 KB
testcase_25 AC 724 ms
78,208 KB
testcase_26 AC 758 ms
78,208 KB
testcase_27 AC 747 ms
78,464 KB
testcase_28 AC 719 ms
78,464 KB
testcase_29 AC 807 ms
78,336 KB
testcase_30 AC 720 ms
78,080 KB
testcase_31 AC 727 ms
78,464 KB
testcase_32 AC 789 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