結果

問題 No.143 豆
ユーザー taktak
提出日時 2018-03-26 22:16:31
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 206 bytes
コンパイル時間 12,888 ms
コンパイル使用メモリ 191,224 KB
実行使用メモリ 34,868 KB
最終ジャッジ日時 2024-06-25 07:27:07
合計ジャッジ時間 19,697 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 335 ms
34,548 KB
testcase_01 AC 333 ms
34,604 KB
testcase_02 AC 334 ms
34,312 KB
testcase_03 AC 333 ms
34,448 KB
testcase_04 AC 336 ms
33,748 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 333 ms
34,480 KB
testcase_09 AC 331 ms
34,584 KB
testcase_10 AC 331 ms
34,736 KB
testcase_11 AC 333 ms
34,716 KB
testcase_12 AC 329 ms
34,608 KB
testcase_13 AC 333 ms
34,480 KB
testcase_14 AC 333 ms
34,868 KB
testcase_15 AC 333 ms
34,180 KB
testcase_16 AC 331 ms
34,860 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (419 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()

K * N - (A |> Array.sum)
|> printfn "%i"  
0