結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー Hiroaki KonoHiroaki Kono
提出日時 2017-10-26 20:12:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 995 ms / 3,000 ms
コード長 325 bytes
コンパイル時間 3,430 ms
コンパイル使用メモリ 75,492 KB
実行使用メモリ 58,076 KB
最終ジャッジ日時 2024-06-07 13:33:07
合計ジャッジ時間 13,286 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,056 KB
testcase_01 AC 124 ms
41,064 KB
testcase_02 AC 128 ms
41,484 KB
testcase_03 AC 103 ms
40,088 KB
testcase_04 AC 122 ms
41,188 KB
testcase_05 AC 129 ms
41,308 KB
testcase_06 AC 186 ms
42,368 KB
testcase_07 AC 271 ms
47,168 KB
testcase_08 AC 511 ms
47,680 KB
testcase_09 AC 616 ms
47,960 KB
testcase_10 AC 921 ms
57,928 KB
testcase_11 AC 830 ms
57,904 KB
testcase_12 AC 908 ms
57,500 KB
testcase_13 AC 917 ms
57,904 KB
testcase_14 AC 907 ms
58,076 KB
testcase_15 AC 917 ms
57,688 KB
testcase_16 AC 995 ms
57,496 KB
testcase_17 AC 121 ms
40,972 KB
testcase_18 AC 109 ms
39,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No9009 {

    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