結果

問題 No.2738 CPC To F
ユーザー YU HiroseYU Hirose
提出日時 2024-05-07 00:49:21
言語 Julia
(1.10.2)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 173 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 242,172 KB
最終ジャッジ日時 2024-05-07 00:49:30
合計ジャッジ時間 8,499 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 267 ms
238,016 KB
testcase_01 AC 294 ms
237,756 KB
testcase_02 AC 283 ms
241,644 KB
testcase_03 AC 281 ms
242,172 KB
testcase_04 AC 269 ms
237,880 KB
testcase_05 AC 291 ms
237,376 KB
testcase_06 AC 266 ms
237,624 KB
testcase_07 AC 268 ms
237,632 KB
testcase_08 AC 268 ms
237,628 KB
testcase_09 AC 268 ms
238,528 KB
testcase_10 AC 276 ms
238,008 KB
testcase_11 AC 267 ms
238,012 KB
testcase_12 AC 266 ms
238,016 KB
testcase_13 AC 266 ms
237,760 KB
testcase_14 AC 301 ms
237,884 KB
testcase_15 AC 267 ms
238,008 KB
testcase_16 AC 270 ms
238,400 KB
testcase_17 AC 266 ms
238,396 KB
testcase_18 AC 267 ms
238,264 KB
testcase_19 AC 277 ms
238,328 KB
testcase_20 AC 269 ms
238,908 KB
testcase_21 AC 270 ms
238,648 KB
testcase_22 AC 270 ms
237,944 KB
testcase_23 AC 280 ms
238,016 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