結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー jonki324jonki324
提出日時 2018-06-03 01:01:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,077 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 2,131 ms
コンパイル使用メモリ 74,312 KB
実行使用メモリ 69,220 KB
最終ジャッジ日時 2024-06-30 09:11:28
合計ジャッジ時間 13,526 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,972 KB
testcase_01 AC 142 ms
54,088 KB
testcase_02 AC 136 ms
54,064 KB
testcase_03 AC 138 ms
54,132 KB
testcase_04 AC 140 ms
54,016 KB
testcase_05 AC 152 ms
54,000 KB
testcase_06 AC 194 ms
54,476 KB
testcase_07 AC 305 ms
58,544 KB
testcase_08 AC 571 ms
59,164 KB
testcase_09 AC 665 ms
59,268 KB
testcase_10 AC 1,002 ms
68,712 KB
testcase_11 AC 1,028 ms
69,096 KB
testcase_12 AC 989 ms
69,028 KB
testcase_13 AC 1,006 ms
69,152 KB
testcase_14 AC 1,059 ms
69,220 KB
testcase_15 AC 1,077 ms
68,660 KB
testcase_16 AC 1,077 ms
69,048 KB
testcase_17 AC 139 ms
54,096 KB
testcase_18 AC 136 ms
53,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        long l = scan.nextLong();
        long sum = 0;
        for (long i = 0; i < l; i++) {
            long in = scan.nextLong();
            sum += in;
        }
        System.out.println(sum);
        scan.close();
    }
}
0