結果

問題 No.143 豆
ユーザー tt
提出日時 2020-03-10 13:00:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 523 ms / 1,000 ms
コード長 167 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,692 KB
最終ジャッジ日時 2024-07-23 11:26:30
合計ジャッジ時間 11,328 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 520 ms
44,060 KB
testcase_01 AC 521 ms
44,180 KB
testcase_02 AC 517 ms
44,440 KB
testcase_03 AC 523 ms
44,048 KB
testcase_04 AC 512 ms
44,180 KB
testcase_05 AC 517 ms
44,156 KB
testcase_06 AC 513 ms
44,320 KB
testcase_07 AC 523 ms
44,432 KB
testcase_08 AC 510 ms
44,484 KB
testcase_09 AC 507 ms
44,568 KB
testcase_10 AC 502 ms
44,692 KB
testcase_11 AC 508 ms
44,424 KB
testcase_12 AC 510 ms
44,184 KB
testcase_13 AC 520 ms
44,692 KB
testcase_14 AC 519 ms
44,180 KB
testcase_15 AC 512 ms
44,048 KB
testcase_16 AC 512 ms
44,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

K,N,F = map(int, input().split())
A = [int(F) for F in input().split()]
A_sum = np.sum(A)

if (K*N<A_sum):
    print(-1)
else:
    print(K*N-A_sum)
0