結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー Hiroaki KonoHiroaki Kono
提出日時 2017-10-26 20:10:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,028 ms / 2,000 ms
コード長 325 bytes
コンパイル時間 3,510 ms
コンパイル使用メモリ 75,356 KB
実行使用メモリ 58,004 KB
最終ジャッジ日時 2024-11-21 20:08:32
合計ジャッジ時間 13,737 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,980 KB
testcase_01 AC 114 ms
40,368 KB
testcase_02 AC 120 ms
41,328 KB
testcase_03 AC 117 ms
40,952 KB
testcase_04 AC 107 ms
39,360 KB
testcase_05 AC 137 ms
41,512 KB
testcase_06 AC 186 ms
42,428 KB
testcase_07 AC 285 ms
47,176 KB
testcase_08 AC 547 ms
48,048 KB
testcase_09 AC 624 ms
47,948 KB
testcase_10 AC 889 ms
57,744 KB
testcase_11 AC 930 ms
57,124 KB
testcase_12 AC 904 ms
58,004 KB
testcase_13 AC 954 ms
57,508 KB
testcase_14 AC 950 ms
57,716 KB
testcase_15 AC 904 ms
57,560 KB
testcase_16 AC 1,028 ms
57,364 KB
testcase_17 AC 121 ms
40,964 KB
testcase_18 AC 119 ms
41,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No9008 {

    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
        Integer count = s.nextInt();
        Long sum = 0L;
        for (int i = 0; i < count; i++) {
            sum += s.nextLong();
        }
        System.out.println(sum);
    }
}
0