結果

問題 No.2738 CPC To F
ユーザー YU HiroseYU Hirose
提出日時 2024-05-07 00:49:07
言語 Julia
(1.10.2)
結果
TLE  
実行時間 -
コード長 173 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 430,988 KB
最終ジャッジ日時 2024-05-07 00:49:22
合計ジャッジ時間 13,876 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 340 ms
239,556 KB
testcase_02 AC 288 ms
241,748 KB
testcase_03 AC 297 ms
242,688 KB
testcase_04 AC 272 ms
237,888 KB
testcase_05 AC 305 ms
241,960 KB
testcase_06 AC 274 ms
237,884 KB
testcase_07 AC 275 ms
239,668 KB
testcase_08 AC 273 ms
238,396 KB
testcase_09 AC 305 ms
238,008 KB
testcase_10 AC 275 ms
238,648 KB
testcase_11 AC 278 ms
240,048 KB
testcase_12 AC 275 ms
239,924 KB
testcase_13 AC 279 ms
237,900 KB
testcase_14 AC 271 ms
238,652 KB
testcase_15 AC 279 ms
240,952 KB
testcase_16 AC 277 ms
240,180 KB
testcase_17 AC 278 ms
238,248 KB
testcase_18 AC 276 ms
238,008 KB
testcase_19 AC 278 ms
238,016 KB
testcase_20 AC 277 ms
238,324 KB
testcase_21 AC 277 ms
237,884 KB
testcase_22 AC 277 ms
240,052 KB
testcase_23 AC 274 ms
430,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function solve()
    n = parse(Int, readline())
    s = readline()
    s = replace(s, "CPCTCPC" => "CPCTF")
    x = split(s, "CPCTF")
    println(length(x) - 1)
end
solve()
0