結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー kusa_no_nekusa_no_ne
提出日時 2017-11-15 23:57:55
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 295 bytes
コンパイル時間 1,838 ms
コンパイル使用メモリ 74,100 KB
実行使用メモリ 69,216 KB
最終ジャッジ日時 2024-05-03 22:46:18
合計ジャッジ時間 10,758 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
54,020 KB
testcase_01 AC 117 ms
54,000 KB
testcase_02 AC 118 ms
54,192 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 473 ms
58,024 KB
testcase_10 AC 815 ms
69,072 KB
testcase_11 AC 889 ms
69,216 KB
testcase_12 AC 845 ms
68,736 KB
testcase_13 AC 892 ms
69,104 KB
testcase_14 AC 803 ms
68,712 KB
testcase_15 AC 830 ms
69,096 KB
testcase_16 AC 915 ms
69,204 KB
testcase_17 AC 106 ms
52,860 KB
testcase_18 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Wandbox
{
    public static void main(String[] args)
    {
        Scanner sc = new Scanner(System.in);

        int a = sc.nextInt();
        long b = 0;
        for(int i=0;i<a;i++){
            b+=sc.nextInt();
        }
        System.out.println(b);
    }
}
0