結果

問題 No.2738 CPC To F
ユーザー イルカイルカ
提出日時 2024-06-10 02:18:07
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
MLE  
実行時間 -
コード長 533 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 1,481,360 KB
最終ジャッジ日時 2024-12-31 09:23:11
合計ジャッジ時間 26,472 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
17,700 KB
testcase_01 MLE -
testcase_02 MLE -
testcase_03 MLE -
testcase_04 AC 43 ms
17,700 KB
testcase_05 AC 36 ms
11,008 KB
testcase_06 AC 35 ms
10,880 KB
testcase_07 AC 35 ms
10,752 KB
testcase_08 AC 90 ms
14,464 KB
testcase_09 TLE -
testcase_10 AC 88 ms
15,488 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 -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(100000)
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):])
        return 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)) 
"🐬?"
0