結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー dogwood0424dogwood0424
提出日時 2017-11-25 22:22:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,071 ms / 2,000 ms
コード長 265 bytes
コンパイル時間 3,481 ms
コンパイル使用メモリ 73,796 KB
実行使用メモリ 57,696 KB
最終ジャッジ日時 2024-05-05 12:41:30
合計ジャッジ時間 13,901 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,068 KB
testcase_01 AC 129 ms
41,000 KB
testcase_02 AC 128 ms
41,156 KB
testcase_03 AC 131 ms
41,016 KB
testcase_04 AC 132 ms
41,240 KB
testcase_05 AC 145 ms
41,608 KB
testcase_06 AC 195 ms
42,328 KB
testcase_07 AC 292 ms
46,800 KB
testcase_08 AC 540 ms
47,716 KB
testcase_09 AC 646 ms
47,608 KB
testcase_10 AC 988 ms
57,604 KB
testcase_11 AC 996 ms
57,496 KB
testcase_12 AC 980 ms
57,196 KB
testcase_13 AC 962 ms
57,412 KB
testcase_14 AC 978 ms
57,696 KB
testcase_15 AC 1,023 ms
57,120 KB
testcase_16 AC 1,071 ms
57,576 KB
testcase_17 AC 130 ms
41,076 KB
testcase_18 AC 131 ms
41,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No9008 {
	public static void main(String[]args) {
		Scanner sc = new Scanner(System.in);

		int n = sc.nextInt();

		long sum = 0;

		for(int i=0; i<n;i++) {


			sum += sc.nextLong();
		}

		System.out.println(sum);


	}


}
0