結果

問題 No.2738 CPC To F
ユーザー YU HiroseYU Hirose
提出日時 2024-05-07 00:49:07
言語 Julia
(1.10.2)
結果
AC  
実行時間 282 ms / 2,000 ms
コード長 173 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 243,868 KB
最終ジャッジ日時 2024-11-29 12:09:53
合計ジャッジ時間 9,887 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 282 ms
241,812 KB
testcase_01 AC 282 ms
243,868 KB
testcase_02 AC 276 ms
242,268 KB
testcase_03 AC 273 ms
242,956 KB
testcase_04 AC 260 ms
238,652 KB
testcase_05 AC 260 ms
238,524 KB
testcase_06 AC 260 ms
237,500 KB
testcase_07 AC 263 ms
238,460 KB
testcase_08 AC 280 ms
237,624 KB
testcase_09 AC 262 ms
238,272 KB
testcase_10 AC 263 ms
237,500 KB
testcase_11 AC 266 ms
237,888 KB
testcase_12 AC 265 ms
237,560 KB
testcase_13 AC 266 ms
239,032 KB
testcase_14 AC 268 ms
238,780 KB
testcase_15 AC 265 ms
237,756 KB
testcase_16 AC 263 ms
238,520 KB
testcase_17 AC 265 ms
238,008 KB
testcase_18 AC 266 ms
239,036 KB
testcase_19 AC 264 ms
239,040 KB
testcase_20 AC 280 ms
238,268 KB
testcase_21 AC 277 ms
237,944 KB
testcase_22 AC 266 ms
237,628 KB
testcase_23 AC 265 ms
239,048 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