結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー ambasadambasad
提出日時 2020-01-10 17:26:39
言語 Java
(openjdk 23)
結果
AC  
実行時間 986 ms / 2,000 ms
コード長 366 bytes
コンパイル時間 3,042 ms
コンパイル使用メモリ 74,928 KB
実行使用メモリ 69,316 KB
最終ジャッジ日時 2024-11-23 22:07:01
合計ジャッジ時間 12,050 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
53,916 KB
testcase_01 AC 130 ms
53,984 KB
testcase_02 AC 126 ms
54,088 KB
testcase_03 AC 126 ms
54,236 KB
testcase_04 AC 127 ms
53,956 KB
testcase_05 AC 139 ms
54,148 KB
testcase_06 AC 190 ms
54,336 KB
testcase_07 AC 285 ms
58,560 KB
testcase_08 AC 541 ms
59,492 KB
testcase_09 AC 616 ms
59,196 KB
testcase_10 AC 898 ms
69,028 KB
testcase_11 AC 880 ms
68,476 KB
testcase_12 AC 840 ms
68,928 KB
testcase_13 AC 891 ms
68,856 KB
testcase_14 AC 909 ms
69,064 KB
testcase_15 AC 925 ms
69,316 KB
testcase_16 AC 986 ms
69,160 KB
testcase_17 AC 126 ms
53,960 KB
testcase_18 AC 125 ms
54,128 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