結果

問題 No.369 足し間違い
ユーザー bellbell
提出日時 2021-02-15 14:35:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 266 ms / 2,000 ms
コード長 376 bytes
コンパイル時間 2,770 ms
コンパイル使用メモリ 77,612 KB
実行使用メモリ 47,092 KB
最終ジャッジ日時 2024-07-23 01:53:40
合計ジャッジ時間 5,341 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,056 KB
testcase_01 AC 136 ms
41,180 KB
testcase_02 AC 130 ms
40,908 KB
testcase_03 AC 121 ms
40,108 KB
testcase_04 AC 243 ms
46,276 KB
testcase_05 AC 186 ms
43,296 KB
testcase_06 AC 242 ms
46,220 KB
testcase_07 AC 266 ms
47,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
        int n=sc.nextInt();
        int ans=0;
        int a=0;

        for(int i=0; i<n; i++){
            a=sc.nextInt();
            ans+=a;
        }
        int v =sc.nextInt();

        System.out.println(ans-v);

        sc.close();
	}
}

0