結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー kameyama_skameyama_s
提出日時 2023-04-06 14:02:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,037 ms / 2,000 ms
コード長 334 bytes
コンパイル時間 2,055 ms
コンパイル使用メモリ 73,912 KB
実行使用メモリ 69,252 KB
最終ジャッジ日時 2024-10-02 13:19:03
合計ジャッジ時間 12,554 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,156 KB
testcase_01 AC 131 ms
54,020 KB
testcase_02 AC 116 ms
52,748 KB
testcase_03 AC 130 ms
53,876 KB
testcase_04 AC 133 ms
53,868 KB
testcase_05 AC 143 ms
54,024 KB
testcase_06 AC 195 ms
54,240 KB
testcase_07 AC 281 ms
58,492 KB
testcase_08 AC 545 ms
59,244 KB
testcase_09 AC 653 ms
59,608 KB
testcase_10 AC 909 ms
69,040 KB
testcase_11 AC 952 ms
69,252 KB
testcase_12 AC 944 ms
68,868 KB
testcase_13 AC 962 ms
69,056 KB
testcase_14 AC 968 ms
68,796 KB
testcase_15 AC 964 ms
69,168 KB
testcase_16 AC 1,037 ms
69,232 KB
testcase_17 AC 130 ms
54,020 KB
testcase_18 AC 133 ms
53,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        long number = 0;
        for (int i=0; i<a;++i) {
        	long b = sc.nextLong();
        	 number += b;
        }
        System.out.println(number);
    }
}
0