結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー k__umek__ume
提出日時 2019-04-28 18:31:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 253 ms / 3,000 ms
コード長 382 bytes
コンパイル時間 2,131 ms
コンパイル使用メモリ 76,556 KB
実行使用メモリ 44,728 KB
最終ジャッジ日時 2024-05-09 22:55:35
合計ジャッジ時間 6,453 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
37,772 KB
testcase_01 AC 61 ms
37,280 KB
testcase_02 AC 61 ms
37,288 KB
testcase_03 AC 64 ms
37,716 KB
testcase_04 AC 62 ms
37,864 KB
testcase_05 AC 65 ms
37,748 KB
testcase_06 AC 86 ms
38,888 KB
testcase_07 AC 117 ms
40,568 KB
testcase_08 AC 164 ms
42,464 KB
testcase_09 AC 184 ms
44,116 KB
testcase_10 AC 228 ms
44,552 KB
testcase_11 AC 219 ms
44,728 KB
testcase_12 AC 226 ms
44,496 KB
testcase_13 AC 246 ms
44,580 KB
testcase_14 AC 253 ms
44,460 KB
testcase_15 AC 216 ms
44,644 KB
testcase_16 AC 227 ms
44,688 KB
testcase_17 AC 61 ms
37,848 KB
testcase_18 AC 62 ms
37,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
    public static void main(String... args) throws Exception {
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
        int N = Integer.parseInt(reader.readLine());
        System.out.println(reader.lines().limit(N).mapToLong(Long::parseLong).sum());
    }
}
0