結果
問題 | No.349 干支の置き物 |
ユーザー | tak |
提出日時 | 2018-07-27 21:31:47 |
言語 | F# (F# 4.0) |
結果 |
AC
|
実行時間 | 76 ms / 2,000 ms |
コード長 | 545 bytes |
コンパイル時間 | 9,999 ms |
コンパイル使用メモリ | 188,948 KB |
実行使用メモリ | 31,488 KB |
最終ジャッジ日時 | 2024-07-04 19:18:45 |
合計ジャッジ時間 | 13,231 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 29 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (599 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/
ソースコード
let R() = stdin.ReadLine() let N = R() |> int let A = Array.init N (fun _ -> R()) let ans = let maxEtoNum = let EtoNums = A |> Array.countBy(fun x -> x) |> Array.map(fun (_, value) -> value) EtoNums |> Array.max let (|ODD|EVE|) n = match n % 2 with | 1 -> ODD | _ -> EVE let isEnable = match N with | ODD -> maxEtoNum <= N / 2 + 1 | EVE -> maxEtoNum <= N / 2 isEnable |> function | true -> "YES" | _ -> "NO" ans |> printfn "%s"