結果

問題 No.1060 素敵な宝箱
ユーザー ikdikd
提出日時 2020-05-23 08:47:34
言語 F#
(F# 4.0)
結果
AC  
実行時間 352 ms / 2,000 ms
コード長 689 bytes
コンパイル時間 9,298 ms
コンパイル使用メモリ 209,808 KB
実行使用メモリ 48,004 KB
最終ジャッジ日時 2024-10-06 23:08:21
合計ジャッジ時間 19,860 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 312 ms
36,052 KB
testcase_01 AC 320 ms
34,804 KB
testcase_02 AC 322 ms
35,792 KB
testcase_03 AC 313 ms
36,052 KB
testcase_04 AC 323 ms
35,904 KB
testcase_05 AC 326 ms
35,800 KB
testcase_06 AC 319 ms
35,780 KB
testcase_07 AC 319 ms
35,780 KB
testcase_08 AC 315 ms
36,160 KB
testcase_09 AC 316 ms
36,004 KB
testcase_10 AC 313 ms
35,956 KB
testcase_11 AC 329 ms
35,976 KB
testcase_12 AC 331 ms
39,044 KB
testcase_13 AC 331 ms
41,524 KB
testcase_14 AC 332 ms
41,908 KB
testcase_15 AC 334 ms
45,676 KB
testcase_16 AC 329 ms
42,796 KB
testcase_17 AC 324 ms
38,984 KB
testcase_18 AC 327 ms
40,920 KB
testcase_19 AC 335 ms
40,164 KB
testcase_20 AC 335 ms
43,820 KB
testcase_21 AC 336 ms
43,776 KB
testcase_22 AC 342 ms
44,252 KB
testcase_23 AC 338 ms
40,304 KB
testcase_24 AC 352 ms
48,004 KB
testcase_25 AC 346 ms
47,912 KB
testcase_26 AC 344 ms
47,876 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (308 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(7,9): warning FS0025: この式のパターン マッチが不完全です たとえば、値 '[|_; _; _|]' はパターンに含まれないケースを示す可能性があります。 [/home/judge/data/code/main.fsproj]
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

// Learn more about F# at http://fsharp.org

open System

[<EntryPoint>]
let main argv =
    let [| n; m |] = stdin.ReadLine().Split() |> Array.map int

    let a =
        [| for _ in 1 .. n -> stdin.ReadLine().Split() |> Array.map int64 |]

    let s =
        [| for j in 0 .. m - 1 ->
            [ for i in 0 .. n - 1 -> a.[i].[j] ]
            |> List.sum |]

    let res =
        a
        |> Array.map (fun box ->
            (Array.zip box s) |> Array.sumBy (fun (cnt, tot) -> cnt * tot))
        |> Array.sortDescending
        |> Array.mapi (fun i pt ->
            if i % 2 = 0 then pt else -pt)
        |> Array.sum

    printfn "%d" res
    0 // return an integer exit code
0