結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー ko kiko ki
提出日時 2020-12-29 22:21:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,024 ms / 3,000 ms
コード長 474 bytes
コンパイル時間 3,773 ms
コンパイル使用メモリ 74,716 KB
実行使用メモリ 69,248 KB
最終ジャッジ日時 2024-10-06 05:08:06
合計ジャッジ時間 14,430 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,044 KB
testcase_01 AC 116 ms
52,776 KB
testcase_02 AC 130 ms
54,208 KB
testcase_03 AC 131 ms
54,036 KB
testcase_04 AC 133 ms
53,908 KB
testcase_05 AC 144 ms
54,224 KB
testcase_06 AC 196 ms
54,272 KB
testcase_07 AC 273 ms
58,012 KB
testcase_08 AC 554 ms
59,536 KB
testcase_09 AC 659 ms
59,476 KB
testcase_10 AC 1,007 ms
69,128 KB
testcase_11 AC 902 ms
69,248 KB
testcase_12 AC 1,003 ms
68,920 KB
testcase_13 AC 1,024 ms
69,120 KB
testcase_14 AC 1,015 ms
69,016 KB
testcase_15 AC 980 ms
69,140 KB
testcase_16 AC 994 ms
68,924 KB
testcase_17 AC 127 ms
53,828 KB
testcase_18 AC 126 ms
53,972 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