結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー kusa_no_nekusa_no_ne
提出日時 2017-11-15 23:59:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,082 ms / 2,000 ms
コード長 298 bytes
コンパイル時間 2,133 ms
コンパイル使用メモリ 74,380 KB
実行使用メモリ 58,008 KB
最終ジャッジ日時 2024-05-03 22:50:01
合計ジャッジ時間 13,372 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,236 KB
testcase_01 AC 135 ms
41,552 KB
testcase_02 AC 133 ms
41,100 KB
testcase_03 AC 138 ms
41,468 KB
testcase_04 AC 135 ms
41,220 KB
testcase_05 AC 148 ms
41,876 KB
testcase_06 AC 199 ms
42,324 KB
testcase_07 AC 298 ms
46,124 KB
testcase_08 AC 507 ms
47,740 KB
testcase_09 AC 661 ms
48,220 KB
testcase_10 AC 1,001 ms
57,180 KB
testcase_11 AC 1,025 ms
57,920 KB
testcase_12 AC 1,051 ms
57,916 KB
testcase_13 AC 1,065 ms
57,608 KB
testcase_14 AC 1,045 ms
57,196 KB
testcase_15 AC 1,029 ms
58,008 KB
testcase_16 AC 1,082 ms
57,968 KB
testcase_17 AC 130 ms
41,148 KB
testcase_18 AC 134 ms
41,696 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