結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
52,844 KB
testcase_01 AC 112 ms
52,880 KB
testcase_02 AC 117 ms
53,592 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 460 ms
58,240 KB
testcase_10 AC 743 ms
69,052 KB
testcase_11 AC 831 ms
69,008 KB
testcase_12 AC 849 ms
69,028 KB
testcase_13 AC 836 ms
68,592 KB
testcase_14 AC 840 ms
68,648 KB
testcase_15 AC 797 ms
69,100 KB
testcase_16 AC 916 ms
68,896 KB
testcase_17 AC 115 ms
54,196 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