結果

問題 No.143 豆
ユーザー hum_ophum_op
提出日時 2016-04-14 20:32:00
言語 F#
(F# 4.0)
結果
AC  
実行時間 343 ms / 1,000 ms
コード長 364 bytes
コンパイル時間 6,854 ms
コンパイル使用メモリ 186,492 KB
実行使用メモリ 35,956 KB
最終ジャッジ日時 2024-07-23 10:29:06
合計ジャッジ時間 12,028 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 340 ms
35,844 KB
testcase_01 AC 67 ms
31,836 KB
testcase_02 AC 334 ms
35,468 KB
testcase_03 AC 337 ms
35,588 KB
testcase_04 AC 333 ms
35,716 KB
testcase_05 AC 67 ms
32,000 KB
testcase_06 AC 66 ms
32,000 KB
testcase_07 AC 65 ms
32,128 KB
testcase_08 AC 64 ms
32,256 KB
testcase_09 AC 334 ms
35,596 KB
testcase_10 AC 65 ms
32,128 KB
testcase_11 AC 337 ms
35,720 KB
testcase_12 AC 341 ms
35,700 KB
testcase_13 AC 331 ms
35,844 KB
testcase_14 AC 337 ms
35,956 KB
testcase_15 AC 343 ms
35,588 KB
testcase_16 AC 333 ms
35,592 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (244 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 #

open System

let No143 () =
    let IN = Console.ReadLine().Split(' ')
    let B = (Int32.Parse IN.[0]) * (Int32.Parse IN.[1])
    let last n = 
        if B - n < 0 then
            printfn "-1"
        else
            printfn "%d" (B - n)

    Console.ReadLine().Split(' ')
    |> Array.map (fun e -> Int32.Parse e)
    |> Array.sum
    |> last
    ()

No143 ()
0