結果

問題 No.369 足し間違い
ユーザー SaYaSaYa
提出日時 2016-05-29 21:38:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 438 bytes
コンパイル時間 2,587 ms
コンパイル使用メモリ 74,764 KB
実行使用メモリ 46,840 KB
最終ジャッジ日時 2024-10-07 17:46:15
合計ジャッジ時間 3,699 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
41,152 KB
testcase_01 AC 112 ms
41,372 KB
testcase_02 AC 105 ms
41,412 KB
testcase_03 AC 117 ms
41,340 KB
testcase_04 AC 190 ms
45,176 KB
testcase_05 AC 159 ms
42,348 KB
testcase_06 AC 178 ms
44,736 KB
testcase_07 AC 197 ms
46,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int n = Integer.parseInt(scanner.next());
        int answer = 0;
        for (int i = 0; i < n; i++) {
            answer += Integer.parseInt(scanner.next());
        }
        int yukiAnswer = Integer.parseInt(scanner.next());

        System.out.println(answer - yukiAnswer);
    }
}
0