結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー d07ki3bq1uzd07ki3bq1uz
提出日時 2019-09-27 23:00:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 973 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 2,103 ms
コンパイル使用メモリ 74,132 KB
実行使用メモリ 69,392 KB
最終ジャッジ日時 2024-09-25 01:02:21
合計ジャッジ時間 12,093 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,308 KB
testcase_01 AC 130 ms
54,248 KB
testcase_02 AC 128 ms
54,256 KB
testcase_03 AC 130 ms
54,268 KB
testcase_04 AC 118 ms
53,040 KB
testcase_05 AC 144 ms
54,008 KB
testcase_06 AC 187 ms
54,496 KB
testcase_07 AC 292 ms
58,596 KB
testcase_08 AC 521 ms
59,472 KB
testcase_09 AC 543 ms
59,496 KB
testcase_10 AC 882 ms
68,648 KB
testcase_11 AC 930 ms
68,988 KB
testcase_12 AC 898 ms
69,064 KB
testcase_13 AC 917 ms
69,392 KB
testcase_14 AC 906 ms
68,712 KB
testcase_15 AC 950 ms
68,728 KB
testcase_16 AC 973 ms
69,228 KB
testcase_17 AC 131 ms
54,208 KB
testcase_18 AC 127 ms
54,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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