結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー ambasadambasad
提出日時 2020-01-10 17:26:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 917 ms / 2,000 ms
コード長 366 bytes
コンパイル時間 2,247 ms
コンパイル使用メモリ 74,528 KB
実行使用メモリ 69,224 KB
最終ジャッジ日時 2024-05-03 01:55:40
合計ジャッジ時間 11,743 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
54,048 KB
testcase_01 AC 105 ms
52,812 KB
testcase_02 AC 100 ms
52,984 KB
testcase_03 AC 101 ms
53,104 KB
testcase_04 AC 121 ms
53,724 KB
testcase_05 AC 126 ms
54,188 KB
testcase_06 AC 172 ms
54,196 KB
testcase_07 AC 257 ms
58,332 KB
testcase_08 AC 449 ms
59,228 KB
testcase_09 AC 455 ms
58,172 KB
testcase_10 AC 814 ms
69,212 KB
testcase_11 AC 789 ms
69,172 KB
testcase_12 AC 759 ms
68,644 KB
testcase_13 AC 917 ms
69,072 KB
testcase_14 AC 820 ms
69,060 KB
testcase_15 AC 778 ms
69,200 KB
testcase_16 AC 870 ms
69,224 KB
testcase_17 AC 110 ms
54,032 KB
testcase_18 AC 105 ms
52,980 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