結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー shiyo1023shiyo1023
提出日時 2019-09-02 04:24:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,204 ms / 3,000 ms
コード長 498 bytes
コンパイル時間 2,610 ms
コンパイル使用メモリ 74,768 KB
実行使用メモリ 69,356 KB
最終ジャッジ日時 2024-05-07 19:25:09
合計ジャッジ時間 14,580 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
54,516 KB
testcase_01 AC 143 ms
54,212 KB
testcase_02 AC 143 ms
54,584 KB
testcase_03 AC 146 ms
53,908 KB
testcase_04 AC 147 ms
54,448 KB
testcase_05 AC 158 ms
54,216 KB
testcase_06 AC 216 ms
54,584 KB
testcase_07 AC 302 ms
58,220 KB
testcase_08 AC 575 ms
59,456 KB
testcase_09 AC 700 ms
59,356 KB
testcase_10 AC 1,108 ms
68,916 KB
testcase_11 AC 1,052 ms
68,932 KB
testcase_12 AC 1,085 ms
69,044 KB
testcase_13 AC 1,087 ms
69,024 KB
testcase_14 AC 1,132 ms
68,964 KB
testcase_15 AC 1,177 ms
69,180 KB
testcase_16 AC 1,204 ms
69,356 KB
testcase_17 AC 141 ms
54,112 KB
testcase_18 AC 141 ms
54,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);

        int N = sc.nextInt();
        long a;
        long sum = 0;

        //long int array[] = new long int[N];

        for(int i = 0; i < N; i++){
            a = sc.nextLong();
            sum = sum + a;   
        }
        
        System.out.println(sum);
    }
}
0