結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,000 KB
testcase_01 AC 139 ms
41,612 KB
testcase_02 AC 135 ms
41,192 KB
testcase_03 AC 139 ms
41,144 KB
testcase_04 AC 136 ms
41,424 KB
testcase_05 AC 149 ms
41,480 KB
testcase_06 AC 189 ms
42,320 KB
testcase_07 AC 291 ms
46,900 KB
testcase_08 AC 575 ms
48,600 KB
testcase_09 AC 677 ms
48,860 KB
testcase_10 AC 1,011 ms
60,816 KB
testcase_11 AC 1,027 ms
60,872 KB
testcase_12 AC 970 ms
60,868 KB
testcase_13 AC 1,062 ms
60,932 KB
testcase_14 AC 1,053 ms
60,584 KB
testcase_15 AC 1,067 ms
61,340 KB
testcase_16 AC 1,163 ms
61,704 KB
testcase_17 AC 135 ms
41,340 KB
testcase_18 AC 135 ms
41,248 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