結果

問題 No.369 足し間違い
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-09 17:45:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 1,813 ms
コンパイル使用メモリ 74,528 KB
実行使用メモリ 58,372 KB
最終ジャッジ日時 2024-10-07 17:54:57
合計ジャッジ時間 3,719 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
54,012 KB
testcase_01 AC 119 ms
53,724 KB
testcase_02 AC 123 ms
53,984 KB
testcase_03 AC 126 ms
54,228 KB
testcase_04 AC 234 ms
58,372 KB
testcase_05 AC 179 ms
54,504 KB
testcase_06 AC 224 ms
57,936 KB
testcase_07 AC 239 ms
58,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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