結果

問題 No.1005 BOT対策
ユーザー ikdikd
提出日時 2020-05-04 21:29:00
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 377 bytes
コンパイル時間 6,420 ms
コンパイル使用メモリ 190,728 KB
実行使用メモリ 32,256 KB
最終ジャッジ日時 2024-06-25 00:10:15
合計ジャッジ時間 10,072 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
32,000 KB
testcase_01 AC 81 ms
31,856 KB
testcase_02 AC 82 ms
31,872 KB
testcase_03 AC 83 ms
31,872 KB
testcase_04 WA -
testcase_05 AC 85 ms
31,872 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 86 ms
31,856 KB
testcase_09 AC 83 ms
31,744 KB
testcase_10 AC 82 ms
31,744 KB
testcase_11 AC 83 ms
32,000 KB
testcase_12 WA -
testcase_13 AC 85 ms
31,872 KB
testcase_14 AC 83 ms
31,744 KB
testcase_15 AC 84 ms
31,872 KB
testcase_16 AC 84 ms
31,976 KB
testcase_17 AC 85 ms
31,872 KB
testcase_18 AC 82 ms
32,256 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 82 ms
31,872 KB
testcase_22 AC 84 ms
32,000 KB
testcase_23 AC 85 ms
31,864 KB
testcase_24 AC 82 ms
31,744 KB
testcase_25 AC 82 ms
31,616 KB
testcase_26 AC 83 ms
31,856 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 81 ms
31,744 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (224 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 #

// Learn more about F# at http://fsharp.org

open System

[<EntryPoint>]
let main argv =
    let s = stdin.ReadLine()
    let t = stdin.ReadLine()

    let rec solve i =
        if i + t.Length > s.Length then 0
        elif s.[i..(i + t.Length - 1)] = t then 1 + solve (i + t.Length)
        else solve (i + 1)
    solve 0 |> printfn "%A"
    0 // return an integer exit code
0