結果

問題 No.143 豆
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-09 14:00:32
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 341 bytes
コンパイル時間 2,302 ms
コンパイル使用メモリ 74,560 KB
実行使用メモリ 41,552 KB
最終ジャッジ日時 2024-10-06 09:50:02
合計ジャッジ時間 5,307 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 126 ms
41,204 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 131 ms
41,020 KB
testcase_06 AC 134 ms
41,280 KB
testcase_07 AC 133 ms
41,468 KB
testcase_08 AC 135 ms
41,084 KB
testcase_09 WA -
testcase_10 AC 135 ms
41,196 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int a = sc.nextInt();
		int b = sc.nextInt();
		int mame = a + b;
		int n = sc.nextInt();
		for (int i=0; i<n; i++) {
			int temp = sc.nextInt();
			mame -= temp;
		}
		System.out.println(mame<0?"-1":mame);
	}
}
0