結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー ko kiko ki
提出日時 2020-12-29 22:19:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,258 ms / 2,000 ms
コード長 474 bytes
コンパイル時間 3,471 ms
コンパイル使用メモリ 74,932 KB
実行使用メモリ 68,404 KB
最終ジャッジ日時 2024-10-06 05:02:58
合計ジャッジ時間 15,417 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
40,720 KB
testcase_01 AC 133 ms
41,232 KB
testcase_02 AC 135 ms
40,792 KB
testcase_03 AC 129 ms
40,824 KB
testcase_04 AC 119 ms
40,076 KB
testcase_05 AC 146 ms
41,456 KB
testcase_06 AC 191 ms
42,256 KB
testcase_07 AC 297 ms
47,076 KB
testcase_08 AC 551 ms
47,992 KB
testcase_09 AC 658 ms
48,124 KB
testcase_10 AC 988 ms
57,672 KB
testcase_11 AC 979 ms
57,720 KB
testcase_12 AC 979 ms
57,204 KB
testcase_13 AC 967 ms
57,316 KB
testcase_14 AC 981 ms
57,960 KB
testcase_15 AC 1,007 ms
57,532 KB
testcase_16 AC 1,258 ms
68,404 KB
testcase_17 AC 128 ms
41,244 KB
testcase_18 AC 132 ms
41,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder_1 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);
    	
    	
        // int 1つ分を読み込む
        int a   = sc.nextInt();
    	long ans = 0;
    	
    	for(int i = 0; i < a; i++) {
    		long b   = sc.nextLong();
    		ans += b;
    		
    	}
    	System.out.println(ans);
    }
}
0