結果

問題 No.2738 CPC To F
ユーザー tkykwtnbtkykwtnb
提出日時 2024-04-20 17:36:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 393 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 106,856 KB
最終ジャッジ日時 2024-04-20 17:36:27
合計ジャッジ時間 2,590 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 150 ms
95,972 KB
testcase_03 AC 179 ms
106,856 KB
testcase_04 AC 40 ms
52,264 KB
testcase_05 AC 40 ms
52,864 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 44 ms
59,648 KB
testcase_09 AC 57 ms
71,808 KB
testcase_10 AC 44 ms
59,264 KB
testcase_11 AC 56 ms
70,400 KB
testcase_12 AC 57 ms
71,552 KB
testcase_13 AC 59 ms
74,368 KB
testcase_14 AC 77 ms
75,264 KB
testcase_15 AC 62 ms
74,368 KB
testcase_16 AC 60 ms
74,368 KB
testcase_17 AC 59 ms
74,368 KB
testcase_18 AC 61 ms
76,160 KB
testcase_19 AC 61 ms
74,880 KB
testcase_20 AC 63 ms
75,776 KB
testcase_21 AC 61 ms
74,880 KB
testcase_22 AC 62 ms
75,776 KB
testcase_23 AC 59 ms
74,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=input()
T=[]
i=0
tmp=[]
while i<N:
    tmp.append(S[i])
    if len(T)>=4 and "".join(T[-4:])=="CPCT":
        for _ in range(2):
            i+=1
            if i==N:break
            tmp.append(S[i])
        if "".join(tmp)=="CPC":T.append("F")
        else:T.extend(tmp)
        tmp=[]
    else:
        T.extend(tmp)
        tmp=[]
    i+=1
print("".join(T).count("CPCTF"))
0