結果

問題 No.700 LOVE
ユーザー nobigomunobigomu
提出日時 2018-07-02 18:05:30
言語 F#
(F# 4.0)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 194 bytes
コンパイル時間 12,725 ms
コンパイル使用メモリ 193,004 KB
実行使用メモリ 33,888 KB
最終ジャッジ日時 2024-07-22 23:24:34
合計ジャッジ時間 12,594 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
33,584 KB
testcase_01 AC 88 ms
33,764 KB
testcase_02 AC 87 ms
33,644 KB
testcase_03 AC 88 ms
33,476 KB
testcase_04 AC 89 ms
33,644 KB
testcase_05 AC 87 ms
33,648 KB
testcase_06 AC 87 ms
33,512 KB
testcase_07 AC 88 ms
33,640 KB
testcase_08 AC 87 ms
33,640 KB
testcase_09 AC 88 ms
33,512 KB
testcase_10 AC 87 ms
33,512 KB
testcase_11 AC 90 ms
33,772 KB
testcase_12 AC 89 ms
33,756 KB
testcase_13 AC 91 ms
33,636 KB
testcase_14 AC 95 ms
33,624 KB
testcase_15 AC 97 ms
33,508 KB
testcase_16 AC 97 ms
33,508 KB
testcase_17 AC 95 ms
33,888 KB
testcase_18 AC 95 ms
33,560 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (282 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 #

seq { for i in 1..(stdin.ReadLine().Split(' ').[0] |> int) -> stdin.ReadLine().IndexOf("LOVE") }
|> Seq.tryFind (fun i -> i <> -1)
|> function
    | None -> "NO"
    | _ -> "YES"
|> printfn "%s"
0