結果

問題 No.143 豆
ユーザー taktak
提出日時 2018-03-26 22:18:16
言語 F#
(F# 4.0)
結果
AC  
実行時間 338 ms / 1,000 ms
コード長 256 bytes
コンパイル時間 11,522 ms
コンパイル使用メモリ 184,252 KB
実行使用メモリ 34,868 KB
最終ジャッジ日時 2024-07-23 10:56:58
合計ジャッジ時間 18,348 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 335 ms
34,612 KB
testcase_01 AC 335 ms
34,736 KB
testcase_02 AC 338 ms
34,464 KB
testcase_03 AC 336 ms
34,612 KB
testcase_04 AC 336 ms
34,192 KB
testcase_05 AC 337 ms
34,488 KB
testcase_06 AC 334 ms
34,736 KB
testcase_07 AC 336 ms
34,316 KB
testcase_08 AC 337 ms
33,800 KB
testcase_09 AC 335 ms
33,932 KB
testcase_10 AC 336 ms
33,788 KB
testcase_11 AC 336 ms
34,868 KB
testcase_12 AC 334 ms
34,580 KB
testcase_13 AC 338 ms
34,612 KB
testcase_14 AC 338 ms
34,484 KB
testcase_15 AC 335 ms
34,732 KB
testcase_16 AC 335 ms
34,480 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (284 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 read() = Console.ReadLine().Split() |> Array.map (int)
             
let K,N,F =
  let t = read()
  t.[0],t.[1],t.[2]             
let A = read()

let num = K * N - (A |> Array.sum)

if num >= 0 then num
else             -1
|> printfn "%i"
0