結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー ambasadambasad
提出日時 2020-01-10 17:32:21
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,006 ms / 3,000 ms
コード長 366 bytes
コンパイル時間 2,133 ms
コンパイル使用メモリ 74,340 KB
実行使用メモリ 57,724 KB
最終ジャッジ日時 2024-11-23 22:07:16
合計ジャッジ時間 12,649 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
40,964 KB
testcase_01 AC 121 ms
40,916 KB
testcase_02 AC 125 ms
41,068 KB
testcase_03 AC 124 ms
40,856 KB
testcase_04 AC 127 ms
41,204 KB
testcase_05 AC 136 ms
41,044 KB
testcase_06 AC 186 ms
42,180 KB
testcase_07 AC 284 ms
46,864 KB
testcase_08 AC 512 ms
47,836 KB
testcase_09 AC 635 ms
47,820 KB
testcase_10 AC 905 ms
57,500 KB
testcase_11 AC 908 ms
57,460 KB
testcase_12 AC 890 ms
57,724 KB
testcase_13 AC 886 ms
57,608 KB
testcase_14 AC 912 ms
57,580 KB
testcase_15 AC 966 ms
57,668 KB
testcase_16 AC 1,006 ms
57,708 KB
testcase_17 AC 132 ms
41,260 KB
testcase_18 AC 117 ms
39,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        // int 1つ分を読み込む
        int n = sc.nextInt();

        long l = 0;
        for (int i=0; i<n; i++) {
            l += sc.nextLong();
        }

        System.out.println(l);

        sc.close();
    }
}
0