結果

問題 No.143 豆
ユーザー oyafusooyafuso
提出日時 2019-03-11 17:08:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 919 bytes
コンパイル時間 2,270 ms
コンパイル使用メモリ 75,532 KB
実行使用メモリ 54,308 KB
最終ジャッジ日時 2024-07-23 11:10:44
合計ジャッジ時間 5,378 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,072 KB
testcase_01 AC 131 ms
54,212 KB
testcase_02 AC 133 ms
54,072 KB
testcase_03 AC 130 ms
54,284 KB
testcase_04 AC 130 ms
53,996 KB
testcase_05 AC 133 ms
54,264 KB
testcase_06 AC 133 ms
54,260 KB
testcase_07 AC 134 ms
54,092 KB
testcase_08 AC 133 ms
53,928 KB
testcase_09 AC 134 ms
53,912 KB
testcase_10 AC 132 ms
54,200 KB
testcase_11 AC 132 ms
54,184 KB
testcase_12 AC 133 ms
54,308 KB
testcase_13 AC 134 ms
54,156 KB
testcase_14 AC 134 ms
54,096 KB
testcase_15 AC 135 ms
54,156 KB
testcase_16 AC 131 ms
54,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {

	private static final String SPLIT_STR = " ";

	public static void main(String[] args) {
		// Scanner生成
		Scanner sc = new Scanner(System.in);
		// 入力設定
		String input = sc.nextLine();
		String[] split = input.split(SPLIT_STR);
		int K = Integer.parseInt(split[0]);
		int N = Integer.parseInt(split[1]);
		int F = Integer.parseInt(split[2]);
		input = sc.nextLine();
		split = input.split(SPLIT_STR);
		List<Integer> numList = new ArrayList<>(split.length);
		for (int i = 0; i < split.length; i++) {
			numList.add(Integer.parseInt(split[i]));
		}
		// Scannerクローズ
		sc.close();

		/* メイン処理開始 */
		// 変数初期化
		int result = K * N;
		// 結果設定
		for (Integer num : numList) {
			result -= num;
			if (result < 0) {
				result = -1;
				break;
			}
		}
		/* メイン処理終了 */

		// 結果出力
		System.out.println(result);
	}
}
0