結果

問題 No.143 豆
ユーザー taktak
提出日時 2018-03-26 22:16:31
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 206 bytes
コンパイル時間 5,244 ms
コンパイル使用メモリ 162,696 KB
実行使用メモリ 24,952 KB
最終ジャッジ日時 2023-09-07 13:20:06
合計ジャッジ時間 7,699 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
24,952 KB
testcase_01 AC 83 ms
22,780 KB
testcase_02 AC 84 ms
23,008 KB
testcase_03 AC 82 ms
22,756 KB
testcase_04 AC 84 ms
20,840 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 86 ms
22,928 KB
testcase_09 AC 86 ms
20,848 KB
testcase_10 AC 86 ms
22,936 KB
testcase_11 AC 85 ms
24,888 KB
testcase_12 AC 84 ms
24,868 KB
testcase_13 AC 83 ms
22,776 KB
testcase_14 AC 83 ms
20,708 KB
testcase_15 AC 84 ms
22,784 KB
testcase_16 AC 85 ms
20,848 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) F# Compiler version 11.0.0.0 for F# 5.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

ソースコード

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