結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー shiyo1023shiyo1023
提出日時 2019-09-02 04:23:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 914 ms / 2,000 ms
コード長 498 bytes
コンパイル時間 2,328 ms
コンパイル使用メモリ 78,204 KB
実行使用メモリ 69,236 KB
最終ジャッジ日時 2024-05-07 19:25:29
合計ジャッジ時間 14,056 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
52,988 KB
testcase_01 AC 122 ms
53,992 KB
testcase_02 AC 107 ms
52,880 KB
testcase_03 AC 115 ms
54,396 KB
testcase_04 AC 109 ms
52,688 KB
testcase_05 AC 134 ms
54,260 KB
testcase_06 AC 180 ms
54,548 KB
testcase_07 AC 272 ms
58,528 KB
testcase_08 AC 501 ms
59,656 KB
testcase_09 AC 576 ms
59,244 KB
testcase_10 AC 795 ms
69,152 KB
testcase_11 AC 830 ms
69,064 KB
testcase_12 AC 848 ms
69,068 KB
testcase_13 AC 904 ms
69,160 KB
testcase_14 AC 899 ms
69,236 KB
testcase_15 AC 886 ms
69,172 KB
testcase_16 AC 914 ms
69,124 KB
testcase_17 AC 119 ms
53,968 KB
testcase_18 AC 120 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);

        int N = sc.nextInt();
        long a;
        long sum = 0;

        //long int array[] = new long int[N];

        for(int i = 0; i < N; i++){
            a = sc.nextLong();
            sum = sum + a;   
        }
        
        System.out.println(sum);
    }
}
0