結果

問題 No.369 足し間違い
ユーザー jp_stejp_ste
提出日時 2016-05-13 22:22:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 437 bytes
コンパイル時間 2,328 ms
コンパイル使用メモリ 74,956 KB
実行使用メモリ 57,432 KB
最終ジャッジ日時 2024-10-05 16:44:34
合計ジャッジ時間 3,716 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
52,896 KB
testcase_01 AC 113 ms
54,184 KB
testcase_02 AC 112 ms
53,920 KB
testcase_03 AC 120 ms
53,892 KB
testcase_04 AC 192 ms
57,116 KB
testcase_05 AC 153 ms
54,380 KB
testcase_06 AC 181 ms
56,556 KB
testcase_07 AC 193 ms
57,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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