結果

問題 No.406 鴨等間隔の法則
ユーザー Nobita GomuNobita Gomu
提出日時 2017-10-05 14:40:12
言語 F#
(F# 4.0)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 469 bytes
コンパイル時間 13,691 ms
コンパイル使用メモリ 183,828 KB
実行使用メモリ 66,816 KB
最終ジャッジ日時 2024-07-07 12:14:10
合計ジャッジ時間 18,658 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
38,528 KB
testcase_01 AC 88 ms
31,724 KB
testcase_02 AC 91 ms
31,616 KB
testcase_03 AC 76 ms
31,616 KB
testcase_04 AC 111 ms
46,464 KB
testcase_05 AC 90 ms
37,120 KB
testcase_06 AC 92 ms
37,632 KB
testcase_07 AC 92 ms
37,376 KB
testcase_08 AC 112 ms
46,080 KB
testcase_09 AC 112 ms
47,104 KB
testcase_10 AC 94 ms
38,656 KB
testcase_11 AC 108 ms
44,800 KB
testcase_12 AC 94 ms
39,552 KB
testcase_13 AC 95 ms
39,296 KB
testcase_14 AC 178 ms
61,952 KB
testcase_15 AC 78 ms
32,128 KB
testcase_16 AC 94 ms
34,176 KB
testcase_17 AC 91 ms
33,024 KB
testcase_18 AC 94 ms
34,300 KB
testcase_19 AC 101 ms
34,696 KB
testcase_20 AC 104 ms
36,480 KB
testcase_21 AC 105 ms
37,120 KB
testcase_22 AC 111 ms
39,936 KB
testcase_23 AC 100 ms
40,064 KB
testcase_24 AC 166 ms
57,600 KB
testcase_25 AC 113 ms
47,104 KB
testcase_26 AC 191 ms
66,560 KB
testcase_27 AC 102 ms
43,392 KB
testcase_28 AC 116 ms
47,104 KB
testcase_29 AC 197 ms
66,816 KB
testcase_30 AC 191 ms
66,304 KB
testcase_31 AC 115 ms
46,836 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (294 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 f (s:string) = s.Split ' ' |> Seq.map int
let uniqCount = Seq.distinct >> Seq.length

let isValid0 n s = n = (s |> f |> uniqCount)
let isValid1 s =
    let cache = s |> (f >> Seq.sort >> Seq.cache)
    1 = (Seq.zip cache (Seq.skip 1 cache)
         |> Seq.map (fun e -> (snd e) - (fst e))
         |> uniqCount)

let isValid n s = (isValid0 n s) && (isValid1 s)

if isValid (stdin.ReadLine () |> int) (stdin.ReadLine ()) then
    "YES"
else
    "NO"
|> printfn "%s"
0