結果

問題 No.369 足し間違い
ユーザー yrindayrinda
提出日時 2016-05-20 11:41:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 2,188 ms
コンパイル使用メモリ 73,876 KB
実行使用メモリ 58,208 KB
最終ジャッジ日時 2024-10-06 11:12:35
合計ジャッジ時間 4,154 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
53,820 KB
testcase_01 AC 119 ms
53,976 KB
testcase_02 AC 105 ms
52,700 KB
testcase_03 AC 115 ms
52,768 KB
testcase_04 AC 241 ms
58,208 KB
testcase_05 AC 182 ms
54,528 KB
testcase_06 AC 221 ms
57,600 KB
testcase_07 AC 233 ms
57,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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