結果

問題 No.369 足し間違い
ユーザー pippicaopippicao
提出日時 2016-06-27 22:16:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 609 bytes
コンパイル時間 3,204 ms
コンパイル使用メモリ 74,476 KB
実行使用メモリ 51,780 KB
最終ジャッジ日時 2024-10-11 22:27:33
合計ジャッジ時間 4,358 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
49,764 KB
testcase_01 AC 53 ms
50,216 KB
testcase_02 AC 55 ms
49,896 KB
testcase_03 AC 53 ms
50,248 KB
testcase_04 AC 96 ms
51,360 KB
testcase_05 AC 59 ms
49,804 KB
testcase_06 AC 97 ms
51,752 KB
testcase_07 AC 99 ms
51,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class No369TashiMachigai {

    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int times = Integer.parseInt(br.readLine());
        String[] nums = br.readLine().split(" ");
        
        int num = 0;
        for(int i = 0; i < nums.length; i++) {
            num += Integer.parseInt(nums[i]);
        }
        
        int ans = num - Integer.parseInt(br.readLine());
        System.out.println(ans);
    }

}
0