結果

問題 No.369 足し間違い
ユーザー Cyberdog-しばいぬ-Cyberdog-しばいぬ-
提出日時 2019-10-11 22:56:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 1,662 ms
コンパイル使用メモリ 73,792 KB
実行使用メモリ 47,236 KB
最終ジャッジ日時 2024-05-04 02:45:03
合計ジャッジ時間 3,569 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
40,340 KB
testcase_01 AC 115 ms
41,232 KB
testcase_02 AC 120 ms
41,444 KB
testcase_03 AC 120 ms
41,708 KB
testcase_04 AC 216 ms
45,896 KB
testcase_05 AC 165 ms
43,224 KB
testcase_06 AC 214 ms
46,088 KB
testcase_07 AC 229 ms
47,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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