結果

問題 No.369 足し間違い
ユーザー jimanojimano
提出日時 2018-01-13 16:56:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 575 bytes
コンパイル時間 2,831 ms
コンパイル使用メモリ 74,276 KB
実行使用メモリ 52,032 KB
最終ジャッジ日時 2024-06-06 10:09:31
合計ジャッジ時間 3,946 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
50,292 KB
testcase_01 AC 50 ms
50,216 KB
testcase_02 AC 51 ms
50,128 KB
testcase_03 AC 52 ms
50,024 KB
testcase_04 AC 90 ms
51,564 KB
testcase_05 AC 58 ms
49,904 KB
testcase_06 AC 95 ms
51,548 KB
testcase_07 AC 91 ms
52,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No0369 {
	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 V = Integer.parseInt(br.readLine());
			int ans = 0;
			
			for (String s : str) {
				ans += Integer.parseInt(s);
			}
			System.out.println(ans - V);

		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0