結果
問題 | No.178 美しいWhitespace (1) |
ユーザー | regerege |
提出日時 | 2016-11-16 23:34:53 |
言語 | F# (F# 4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 295 bytes |
コンパイル時間 | 10,133 ms |
コンパイル使用メモリ | 193,684 KB |
実行使用メモリ | 37,336 KB |
最終ジャッジ日時 | 2024-05-04 14:35:46 |
合計ジャッジ時間 | 17,270 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 302 ms
34,628 KB |
testcase_01 | AC | 305 ms
34,868 KB |
testcase_02 | AC | 307 ms
34,752 KB |
testcase_03 | AC | 304 ms
34,620 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 310 ms
35,036 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 296 ms
35,424 KB |
testcase_12 | AC | 301 ms
34,380 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 307 ms
34,388 KB |
testcase_19 | WA | - |
testcase_20 | AC | 300 ms
34,916 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 302 ms
35,044 KB |
testcase_24 | AC | 304 ms
35,036 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (981 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 N = stdin.ReadLine() |> int let r() = let arr = stdin.ReadLine().Split(' ') |> Array.map int in arr.[0] + arr.[1] * 4 let l = [ for x in 1..N -> r() ] let m = List.max l let s,b = List.fold (fun (s,b) n -> let x = m - n in (s+x, b||x%2=1)) (0,false) l printfn "%d" (if b then -1 else (s/2))