結果

問題 No.1005 BOT対策
ユーザー natoriusannatoriusan
提出日時 2023-07-30 11:47:03
言語 F#
(F# 4.0)
結果
AC  
実行時間 451 ms / 2,000 ms
コード長 618 bytes
コンパイル時間 8,746 ms
コンパイル使用メモリ 185,644 KB
実行使用メモリ 57,976 KB
最終ジャッジ日時 2024-10-09 07:06:55
合計ジャッジ時間 18,367 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 338 ms
34,468 KB
testcase_01 AC 341 ms
34,204 KB
testcase_02 AC 341 ms
33,456 KB
testcase_03 AC 339 ms
34,760 KB
testcase_04 AC 62 ms
30,080 KB
testcase_05 AC 341 ms
34,560 KB
testcase_06 AC 63 ms
29,696 KB
testcase_07 AC 64 ms
29,816 KB
testcase_08 AC 63 ms
29,824 KB
testcase_09 AC 63 ms
29,568 KB
testcase_10 AC 336 ms
34,340 KB
testcase_11 AC 337 ms
34,352 KB
testcase_12 AC 354 ms
40,448 KB
testcase_13 AC 342 ms
36,520 KB
testcase_14 AC 343 ms
37,056 KB
testcase_15 AC 340 ms
36,708 KB
testcase_16 AC 342 ms
36,792 KB
testcase_17 AC 337 ms
34,528 KB
testcase_18 AC 63 ms
29,824 KB
testcase_19 AC 63 ms
29,824 KB
testcase_20 AC 63 ms
29,824 KB
testcase_21 AC 337 ms
34,532 KB
testcase_22 AC 335 ms
34,316 KB
testcase_23 AC 339 ms
34,288 KB
testcase_24 AC 345 ms
38,692 KB
testcase_25 AC 356 ms
39,872 KB
testcase_26 AC 353 ms
39,748 KB
testcase_27 AC 62 ms
29,696 KB
testcase_28 AC 451 ms
57,976 KB
testcase_29 AC 337 ms
34,316 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (290 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

let mutable s = stdin.ReadLine ()
let t = stdin.ReadLine ()
let firstLength = s.Length
let length = t.Length

let findIndex (str: string) (search: string) =
    let mutable index = -1
    for i in 0..str.Length-search.Length do
        if index = -1 && str.[i..i+search.Length-1] = search then
            index <- i
    index
    
if length = 1 then
    if s |> Seq.contains t.[0] then
        printfn "-1"
    else
        printfn "0"
else
    while findIndex s t <> -1 do
        let index = findIndex s t
        s <- s.[..index+t.Length-2] + "." + s.[index+t.Length-1..]
    s.Length - firstLength |> printfn "%d"
0