結果

問題 No.1005 BOT対策
ユーザー natoriusannatoriusan
提出日時 2023-07-30 11:45:16
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 549 bytes
コンパイル時間 7,031 ms
コンパイル使用メモリ 185,624 KB
実行使用メモリ 57,844 KB
最終ジャッジ日時 2024-10-09 07:04:45
合計ジャッジ時間 17,044 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 332 ms
34,336 KB
testcase_01 AC 333 ms
34,524 KB
testcase_02 AC 333 ms
34,144 KB
testcase_03 AC 332 ms
34,696 KB
testcase_04 AC 61 ms
29,696 KB
testcase_05 AC 337 ms
34,564 KB
testcase_06 AC 62 ms
29,824 KB
testcase_07 AC 61 ms
29,696 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 334 ms
33,712 KB
testcase_11 AC 334 ms
34,552 KB
testcase_12 AC 345 ms
40,496 KB
testcase_13 AC 332 ms
36,636 KB
testcase_14 AC 340 ms
37,180 KB
testcase_15 AC 337 ms
36,508 KB
testcase_16 AC 336 ms
36,708 KB
testcase_17 AC 332 ms
34,344 KB
testcase_18 WA -
testcase_19 AC 62 ms
29,696 KB
testcase_20 AC 62 ms
29,952 KB
testcase_21 AC 329 ms
34,400 KB
testcase_22 AC 330 ms
34,188 KB
testcase_23 AC 330 ms
34,344 KB
testcase_24 AC 342 ms
37,980 KB
testcase_25 AC 346 ms
39,800 KB
testcase_26 AC 344 ms
39,760 KB
testcase_27 AC 61 ms
30,080 KB
testcase_28 AC 445 ms
57,844 KB
testcase_29 AC 337 ms
34,528 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (233 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
    printfn "-1"
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