結果

問題 No.369 足し間違い
ユーザー ontama_12ontama_12
提出日時 2016-09-23 11:06:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 519 bytes
コンパイル時間 1,640 ms
コンパイル使用メモリ 74,100 KB
実行使用メモリ 47,188 KB
最終ジャッジ日時 2024-11-17 17:36:18
合計ジャッジ時間 3,428 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
41,196 KB
testcase_01 AC 103 ms
41,500 KB
testcase_02 AC 103 ms
41,212 KB
testcase_03 AC 109 ms
41,004 KB
testcase_04 AC 198 ms
46,724 KB
testcase_05 AC 158 ms
42,284 KB
testcase_06 AC 198 ms
45,436 KB
testcase_07 AC 203 ms
47,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
//入力文字をの読み取り
    	Scanner sc = new Scanner(System.in);
        //1文字目
        long n = sc.nextLong();
        //正しい合計値
        long sum =0;
        //2文字目以降を合計
        for(int i=0;i<n;i++){
        	sum+=sc.nextLong();
        }
        
        //間違いとの誤差
        long result = sum-sc.nextLong();
        //出力
        	System.out.println(result);
    }
}
0