結果

問題 No.369 足し間違い
ユーザー Cyberdog-しばいぬ-
提出日時 2019-10-11 22:56:14
言語 Java
(openjdk 23)
結果
AC  
実行時間 224 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 1,777 ms
コンパイル使用メモリ 73,956 KB
実行使用メモリ 58,164 KB
最終ジャッジ日時 2024-11-25 08:57:32
合計ジャッジ時間 3,642 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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