結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー ldsybldsyb
提出日時 2017-04-13 12:16:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,023 ms / 2,000 ms
コード長 284 bytes
コンパイル時間 1,924 ms
コンパイル使用メモリ 74,348 KB
実行使用メモリ 57,900 KB
最終ジャッジ日時 2024-07-18 12:54:28
合計ジャッジ時間 12,392 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,068 KB
testcase_01 AC 133 ms
41,364 KB
testcase_02 AC 132 ms
41,208 KB
testcase_03 AC 131 ms
41,248 KB
testcase_04 AC 117 ms
40,096 KB
testcase_05 AC 142 ms
41,192 KB
testcase_06 AC 191 ms
42,072 KB
testcase_07 AC 298 ms
46,800 KB
testcase_08 AC 550 ms
47,988 KB
testcase_09 AC 649 ms
47,860 KB
testcase_10 AC 925 ms
57,820 KB
testcase_11 AC 929 ms
57,492 KB
testcase_12 AC 942 ms
57,852 KB
testcase_13 AC 989 ms
57,400 KB
testcase_14 AC 962 ms
57,828 KB
testcase_15 AC 925 ms
57,900 KB
testcase_16 AC 1,023 ms
57,764 KB
testcase_17 AC 129 ms
41,380 KB
testcase_18 AC 124 ms
40,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        long ans = 0;
        for(int i = 0; i < a; i++) ans += sc.nextLong();
        System.out.println(ans);
    }
}
0