結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー kusa_no_nekusa_no_ne
提出日時 2017-11-15 23:59:29
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,010 ms / 2,000 ms
コード長 298 bytes
コンパイル時間 1,942 ms
コンパイル使用メモリ 74,048 KB
実行使用メモリ 69,552 KB
最終ジャッジ日時 2024-11-25 04:08:35
合計ジャッジ時間 11,839 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,040 KB
testcase_01 AC 126 ms
53,900 KB
testcase_02 AC 123 ms
54,012 KB
testcase_03 AC 126 ms
53,724 KB
testcase_04 AC 119 ms
54,020 KB
testcase_05 AC 130 ms
54,312 KB
testcase_06 AC 173 ms
54,112 KB
testcase_07 AC 279 ms
57,844 KB
testcase_08 AC 544 ms
59,040 KB
testcase_09 AC 500 ms
58,628 KB
testcase_10 AC 897 ms
69,552 KB
testcase_11 AC 890 ms
68,508 KB
testcase_12 AC 867 ms
68,396 KB
testcase_13 AC 905 ms
68,920 KB
testcase_14 AC 1,010 ms
69,212 KB
testcase_15 AC 930 ms
69,180 KB
testcase_16 AC 1,006 ms
69,124 KB
testcase_17 AC 127 ms
53,800 KB
testcase_18 AC 125 ms
54,028 KB
権限があれば一括ダウンロードができます

ソースコード

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.nextLong();
        }
        System.out.println(b);
    }
}

0