結果

問題 No.700 LOVE
ユーザー taktak
提出日時 2018-06-16 04:40:12
言語 F#
(F# 4.0)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 501 bytes
コンパイル時間 8,485 ms
コンパイル使用メモリ 191,884 KB
実行使用メモリ 32,908 KB
最終ジャッジ日時 2024-07-22 23:18:49
合計ジャッジ時間 10,987 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
31,104 KB
testcase_01 AC 81 ms
30,944 KB
testcase_02 AC 82 ms
30,848 KB
testcase_03 AC 81 ms
30,976 KB
testcase_04 AC 86 ms
30,976 KB
testcase_05 AC 81 ms
30,848 KB
testcase_06 AC 81 ms
30,976 KB
testcase_07 AC 81 ms
30,968 KB
testcase_08 AC 82 ms
30,848 KB
testcase_09 AC 82 ms
32,908 KB
testcase_10 AC 84 ms
31,104 KB
testcase_11 AC 85 ms
31,104 KB
testcase_12 AC 86 ms
30,976 KB
testcase_13 AC 85 ms
31,232 KB
testcase_14 AC 82 ms
31,232 KB
testcase_15 AC 82 ms
30,976 KB
testcase_16 AC 82 ms
31,488 KB
testcase_17 AC 86 ms
31,104 KB
testcase_18 AC 85 ms
31,232 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (287 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 hasLove (str:string) =
    let love = "LOVE".ToCharArray()
    str.ToCharArray()
    |> Array.windowed 4
    |> Array.where(fun x -> x=love)
    |> Array.length
    |> function | x when x > 0 -> true | _ -> false
    
let R() = stdin.ReadLine()     
let n,m = let t = R().Split() |> Array.map(int) in t.[0],t.[1]
let s = Array.init n (fun _ -> R())

s
|> Array.map(fun line -> hasLove line)
|> Array.where(fun x -> x)
|> Array.length
|> function | x when x > 0 -> "YES" | _ -> "NO"
|> printfn "%s"
0