結果

問題 No.369 足し間違い
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-01 16:04:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 657 bytes
コンパイル時間 4,286 ms
コンパイル使用メモリ 74,764 KB
実行使用メモリ 39,512 KB
最終ジャッジ日時 2024-11-15 21:32:59
合計ジャッジ時間 4,537 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,832 KB
testcase_01 AC 53 ms
36,892 KB
testcase_02 AC 52 ms
37,024 KB
testcase_03 AC 53 ms
36,872 KB
testcase_04 AC 89 ms
38,952 KB
testcase_05 AC 58 ms
37,036 KB
testcase_06 AC 96 ms
38,968 KB
testcase_07 AC 89 ms
39,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No369 {

	public static void main(String[] args) {
		try{
			BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
			int N = Integer.parseInt(br.readLine());
			String[] str = br.readLine().split(" ");
			int[] num = new int[N];
			int sum =0;
			for(int i=0; i < N; i++){
				num[i] = Integer.parseInt(str[i]);
				sum += num[i];
			}
			int v = Integer.parseInt(br.readLine());
			System.out.println(sum - v);
			
		}catch(IOException e){
			e.getStackTrace();
		}catch(NumberFormatException e){
			e.getStackTrace();
		}
	}
}
0