結果

問題 No.369 足し間違い
ユーザー nCk_cvnCk_cv
提出日時 2016-07-01 18:25:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 267 ms / 2,000 ms
コード長 508 bytes
コンパイル時間 2,351 ms
コンパイル使用メモリ 73,764 KB
実行使用メモリ 58,196 KB
最終ジャッジ日時 2024-10-12 00:03:04
合計ジャッジ時間 4,547 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
53,848 KB
testcase_01 AC 140 ms
53,668 KB
testcase_02 AC 143 ms
54,016 KB
testcase_03 AC 144 ms
53,736 KB
testcase_04 AC 254 ms
57,596 KB
testcase_05 AC 194 ms
56,572 KB
testcase_06 AC 246 ms
57,932 KB
testcase_07 AC 267 ms
58,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.math.*;
import java.util.*;


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