結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー nogisunnogisun
提出日時 2020-03-19 09:29:11
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,123 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 3,897 ms
コンパイル使用メモリ 74,604 KB
実行使用メモリ 61,904 KB
最終ジャッジ日時 2024-12-14 03:03:30
合計ジャッジ時間 15,369 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,464 KB
testcase_01 AC 137 ms
41,172 KB
testcase_02 AC 144 ms
40,888 KB
testcase_03 AC 123 ms
39,980 KB
testcase_04 AC 137 ms
41,320 KB
testcase_05 AC 147 ms
41,528 KB
testcase_06 AC 202 ms
42,576 KB
testcase_07 AC 312 ms
47,364 KB
testcase_08 AC 614 ms
48,904 KB
testcase_09 AC 688 ms
48,504 KB
testcase_10 AC 1,011 ms
61,304 KB
testcase_11 AC 1,025 ms
60,896 KB
testcase_12 AC 999 ms
61,288 KB
testcase_13 AC 1,029 ms
61,460 KB
testcase_14 AC 1,059 ms
61,008 KB
testcase_15 AC 1,034 ms
61,296 KB
testcase_16 AC 1,123 ms
61,904 KB
testcase_17 AC 142 ms
41,064 KB
testcase_18 AC 138 ms
41,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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