結果

問題 No.369 足し間違い
ユーザー Cyberdog-しばいぬ-Cyberdog-しばいぬ-
提出日時 2019-10-11 22:56:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 224 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 1,777 ms
コンパイル使用メモリ 73,956 KB
実行使用メモリ 58,164 KB
最終ジャッジ日時 2024-11-25 08:57:32
合計ジャッジ時間 3,642 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
52,744 KB
testcase_01 AC 119 ms
54,036 KB
testcase_02 AC 119 ms
53,876 KB
testcase_03 AC 121 ms
54,152 KB
testcase_04 AC 224 ms
58,164 KB
testcase_05 AC 171 ms
54,284 KB
testcase_06 AC 219 ms
57,444 KB
testcase_07 AC 221 ms
57,808 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