結果

問題 No.143 豆
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-08-22 15:30:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 118 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 53,896 KB
最終ジャッジ日時 2024-12-17 15:03:27
合計ジャッジ時間 1,471 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 36 ms
52,776 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 38 ms
53,072 KB
testcase_06 AC 37 ms
52,972 KB
testcase_07 AC 38 ms
53,140 KB
testcase_08 AC 36 ms
52,296 KB
testcase_09 WA -
testcase_10 AC 37 ms
52,076 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

K,N,F=map(int,input().split())
A=list(map(int,input().split()))
ans=K+N-sum(A)
if ans>=0:
	print(ans)
else:
	print(-1)
0