結果

問題 No.143 豆
ユーザー 67oYG9nh2YMmIci67oYG9nh2YMmIci
提出日時 2020-06-25 17:18:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 192 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 81,344 KB
最終ジャッジ日時 2024-07-23 11:32:34
合計ジャッジ時間 10,331 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 533 ms
43,928 KB
testcase_01 AC 505 ms
43,932 KB
testcase_02 AC 500 ms
44,560 KB
testcase_03 AC 501 ms
44,184 KB
testcase_04 AC 495 ms
44,060 KB
testcase_05 AC 496 ms
44,180 KB
testcase_06 AC 498 ms
44,184 KB
testcase_07 AC 498 ms
43,928 KB
testcase_08 AC 502 ms
44,056 KB
testcase_09 AC 501 ms
43,916 KB
testcase_10 AC 503 ms
44,052 KB
testcase_11 AC 502 ms
44,184 KB
testcase_12 AC 504 ms
44,436 KB
testcase_13 AC 495 ms
44,304 KB
testcase_14 AC 503 ms
44,088 KB
testcase_15 AC 503 ms
44,440 KB
testcase_16 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
K,N,F = map(int, input().split())
A = [int(i) for i in input().split()]
mame_sum=K*N
fam_sum=np.sum(A)
if fam_sum<=mame_sum:
    print(mame_sum-fam_sum)
else:
    print(-1)
0