結果

問題 No.369 足し間違い
ユーザー YamaKasaYamaKasa
提出日時 2018-05-03 22:33:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 385 bytes
コンパイル時間 3,696 ms
コンパイル使用メモリ 74,296 KB
実行使用メモリ 46,888 KB
最終ジャッジ日時 2024-06-28 00:52:45
合計ジャッジ時間 4,126 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,152 KB
testcase_01 AC 130 ms
41,456 KB
testcase_02 AC 130 ms
41,156 KB
testcase_03 AC 136 ms
41,156 KB
testcase_04 AC 242 ms
46,888 KB
testcase_05 AC 192 ms
43,136 KB
testcase_06 AC 237 ms
46,840 KB
testcase_07 AC 269 ms
46,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int []A = new int[N];
		for(int i = 0; i < N; i++) {
			A[i] = scan.nextInt();
		}
		int v = scan.nextInt();
		scan.close();
		int sum = 0;
		for(int i = 0; i < N; i++) {
			sum += A[i];
		}
		System.out.println(sum - v);
	}
}
0