結果

問題 No.143 豆
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-08-22 15:30:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 118 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 54,116 KB
最終ジャッジ日時 2024-05-09 21:13:23
合計ジャッジ時間 1,280 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 30 ms
51,852 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 29 ms
51,828 KB
testcase_06 AC 30 ms
51,832 KB
testcase_07 AC 30 ms
52,552 KB
testcase_08 AC 30 ms
52,184 KB
testcase_09 WA -
testcase_10 AC 29 ms
52,016 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