結果

問題 No.369 足し間違い
ユーザー HEGO55HEGO55
提出日時 2017-05-17 17:51:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 215 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 3,339 ms
コンパイル使用メモリ 73,816 KB
実行使用メモリ 47,380 KB
最終ジャッジ日時 2024-09-17 21:03:34
合計ジャッジ時間 4,749 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
41,536 KB
testcase_01 AC 98 ms
41,416 KB
testcase_02 AC 111 ms
41,468 KB
testcase_03 AC 110 ms
41,564 KB
testcase_04 AC 210 ms
46,924 KB
testcase_05 AC 170 ms
42,624 KB
testcase_06 AC 203 ms
45,668 KB
testcase_07 AC 215 ms
47,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Test39{
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
		
        int N = sc.nextInt();
		int[] num = new int[N];
		int sum = 0;
		
		for(int i=0; i<num.length; i++){
			num[i] = sc.nextInt();
			sum += num[i];
		}
		
		int V = sc.nextInt();
		
		System.out.println(sum-V);
    }
}
0