結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー ambasadambasad
提出日時 2020-01-10 17:32:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 889 ms / 3,000 ms
コード長 366 bytes
コンパイル時間 1,884 ms
コンパイル使用メモリ 74,928 KB
実行使用メモリ 69,256 KB
最終ジャッジ日時 2024-05-03 01:55:54
合計ジャッジ時間 11,303 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
54,140 KB
testcase_01 AC 110 ms
54,024 KB
testcase_02 AC 106 ms
54,320 KB
testcase_03 AC 114 ms
53,800 KB
testcase_04 AC 114 ms
53,788 KB
testcase_05 AC 129 ms
54,364 KB
testcase_06 AC 172 ms
54,252 KB
testcase_07 AC 255 ms
58,516 KB
testcase_08 AC 506 ms
59,388 KB
testcase_09 AC 480 ms
59,120 KB
testcase_10 AC 762 ms
69,080 KB
testcase_11 AC 819 ms
68,936 KB
testcase_12 AC 828 ms
69,256 KB
testcase_13 AC 839 ms
69,140 KB
testcase_14 AC 819 ms
69,224 KB
testcase_15 AC 872 ms
69,200 KB
testcase_16 AC 889 ms
69,244 KB
testcase_17 AC 112 ms
53,924 KB
testcase_18 AC 100 ms
53,272 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