結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー nogisunnogisun
提出日時 2020-03-19 06:30:29
言語 Java
(openjdk 23)
結果
RE  
実行時間 -
コード長 371 bytes
コンパイル時間 3,503 ms
コンパイル使用メモリ 74,244 KB
実行使用メモリ 61,712 KB
最終ジャッジ日時 2024-12-14 03:01:43
合計ジャッジ時間 13,852 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,268 KB
testcase_01 AC 140 ms
41,424 KB
testcase_02 AC 138 ms
41,140 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 667 ms
48,668 KB
testcase_10 AC 968 ms
60,752 KB
testcase_11 AC 984 ms
60,828 KB
testcase_12 AC 956 ms
61,164 KB
testcase_13 AC 1,001 ms
60,924 KB
testcase_14 AC 1,034 ms
60,836 KB
testcase_15 AC 1,027 ms
61,336 KB
testcase_16 AC 1,065 ms
61,712 KB
testcase_17 AC 137 ms
41,392 KB
testcase_18 RE -
権限があれば一括ダウンロードができます

ソースコード

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.nextInt();
            sum += arry[i];
        }
        System.out.println(sum);
    }
}
0