結果

問題 No.143 豆
ユーザー hum_ophum_op
提出日時 2016-04-14 20:33:33
言語 F#
(F# 4.0)
結果
AC  
実行時間 336 ms / 1,000 ms
コード長 351 bytes
コンパイル時間 9,807 ms
コンパイル使用メモリ 187,972 KB
実行使用メモリ 36,068 KB
最終ジャッジ日時 2024-07-23 10:28:48
合計ジャッジ時間 14,988 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 335 ms
35,844 KB
testcase_01 AC 65 ms
31,744 KB
testcase_02 AC 332 ms
35,464 KB
testcase_03 AC 334 ms
35,852 KB
testcase_04 AC 336 ms
35,596 KB
testcase_05 AC 66 ms
31,992 KB
testcase_06 AC 66 ms
32,116 KB
testcase_07 AC 67 ms
32,124 KB
testcase_08 AC 66 ms
31,852 KB
testcase_09 AC 332 ms
35,720 KB
testcase_10 AC 66 ms
32,244 KB
testcase_11 AC 330 ms
35,976 KB
testcase_12 AC 331 ms
35,596 KB
testcase_13 AC 332 ms
36,068 KB
testcase_14 AC 334 ms
35,976 KB
testcase_15 AC 336 ms
35,844 KB
testcase_16 AC 334 ms
35,564 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (236 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 Int32.Parse
    |> Array.sum
    |> last
    ()

No143 ()
0