結果

問題 No.2738 CPC To F
ユーザー sk4rdsk4rd
提出日時 2024-04-20 17:47:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 95,912 KB
最終ジャッジ日時 2024-10-12 13:43:54
合計ジャッジ時間 2,400 ms
ジャッジサーバーID
(参考情報)
judge / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,956 KB
testcase_01 AC 36 ms
53,380 KB
testcase_02 AC 164 ms
95,912 KB
testcase_03 AC 148 ms
95,764 KB
testcase_04 AC 35 ms
53,124 KB
testcase_05 AC 36 ms
53,096 KB
testcase_06 AC 35 ms
52,564 KB
testcase_07 AC 34 ms
52,284 KB
testcase_08 AC 39 ms
59,480 KB
testcase_09 AC 50 ms
69,132 KB
testcase_10 AC 39 ms
59,712 KB
testcase_11 AC 44 ms
66,524 KB
testcase_12 AC 48 ms
68,152 KB
testcase_13 AC 51 ms
70,332 KB
testcase_14 AC 51 ms
71,188 KB
testcase_15 AC 51 ms
71,268 KB
testcase_16 AC 52 ms
70,872 KB
testcase_17 AC 51 ms
70,504 KB
testcase_18 AC 52 ms
71,912 KB
testcase_19 AC 53 ms
71,548 KB
testcase_20 AC 56 ms
72,196 KB
testcase_21 AC 53 ms
70,992 KB
testcase_22 AC 52 ms
71,800 KB
testcase_23 AC 52 ms
70,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = list(input() + '.......')
ans = 0
for i in range(n):
    if ''.join(s[i:i+5]) == 'CPCTF':
        ans += 1
    elif ''.join(s[i:i+7]) == 'CPCTCPC':
        ans += 1
        s[i+6] = '.'
print(ans)
0