結果

問題 No.99 ジャンピング駒
ユーザー iwotiwot
提出日時 2020-06-21 13:51:00
言語 F#
(F# 4.0)
結果
AC  
実行時間 365 ms / 5,000 ms
コード長 256 bytes
コンパイル時間 6,662 ms
コンパイル使用メモリ 193,344 KB
実行使用メモリ 49,024 KB
最終ジャッジ日時 2024-07-03 17:57:59
合計ジャッジ時間 10,287 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 363 ms
48,768 KB
testcase_01 AC 363 ms
48,512 KB
testcase_02 AC 364 ms
48,768 KB
testcase_03 AC 365 ms
48,768 KB
testcase_04 AC 362 ms
49,024 KB
testcase_05 AC 363 ms
48,512 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (234 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 N = stdin.ReadLine().Trim() |> int64
let XS = stdin.ReadLine().Split(' ') |> Array.map int64

let odds = Array.fold (fun acc n -> if n % 2L <> 0L then acc + 1L else acc) 0L XS
let evens = (XS.Length |> int64) - odds

printfn "%d" <| abs (odds - evens)
0