結果
問題 | No.599 回文かい |
ユーザー | htkb |
提出日時 | 2019-02-19 19:28:10 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 296 bytes |
コンパイル時間 | 748 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 11,648 KB |
最終ジャッジ日時 | 2024-10-12 16:07:45 |
合計ジャッジ時間 | 2,578 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
10,496 KB |
testcase_01 | AC | 29 ms
10,496 KB |
testcase_02 | AC | 29 ms
10,368 KB |
testcase_03 | AC | 29 ms
10,496 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | RE | - |
testcase_15 | WA | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
evil_0.txt | RE | - |
ソースコード
import sys sys.setrecursionlimit(10**6) s = input() length = (len(s)+1) // 2 s, s_rev = s[:length], s[len(s)//2:] mod = 10**9+7 dp = [0]*length def rec(i): dp[i] = (sum(dp[j] or rec(j) for j in range(i+1, length) if s[i:j] == s_rev[-j:length-i]) + 1) % mod return dp[i] print(rec(0))