結果
問題 | No.2738 CPC To F |
ユーザー | イルカ |
提出日時 | 2024-06-10 02:10:25 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
MLE
|
実行時間 | - |
コード長 | 536 bytes |
コンパイル時間 | 321 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 1,481,604 KB |
最終ジャッジ日時 | 2024-12-31 09:09:59 |
合計ジャッジ時間 | 26,938 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
17,696 KB |
testcase_01 | MLE | - |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | AC | 37 ms
17,824 KB |
testcase_05 | AC | 37 ms
11,008 KB |
testcase_06 | AC | 35 ms
10,880 KB |
testcase_07 | AC | 33 ms
10,880 KB |
testcase_08 | AC | 91 ms
14,464 KB |
testcase_09 | TLE | - |
testcase_10 | AC | 87 ms
15,616 KB |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
ソースコード
import sys sys.setrecursionlimit(700000) N = int(input()) S = input() cur = 0 l = 0 s1 = "CPCTF" s2 = "CPCTCPC" cnt = 0 mem = {} def f(s): if len(s)<5: return 0 a = [f(s[1:])] if s.startswith(s1): if len(s)-len(s1) not in mem: mem[len(s)-len(s1)] = f(s[len(s1):]) a.append(mem[len(s)-len(s1)]+1) if s.startswith(s2): if len(s)-len(s2) not in mem: mem[len(s)-len(s2)] = f(s[len(s2):]) a.append(mem[len(s)-len(s2)]+1) return max(a) print(f(S)) "🐬?"