結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー ShotaroSuzuShotaroSuzu
提出日時 2020-05-19 17:48:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 900 ms / 2,000 ms
コード長 652 bytes
コンパイル時間 1,980 ms
コンパイル使用メモリ 75,156 KB
実行使用メモリ 64,360 KB
最終ジャッジ日時 2024-10-01 22:53:46
合計ジャッジ時間 11,799 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
40,884 KB
testcase_01 AC 114 ms
41,144 KB
testcase_02 AC 113 ms
41,136 KB
testcase_03 AC 116 ms
41,440 KB
testcase_04 AC 105 ms
40,000 KB
testcase_05 AC 134 ms
41,748 KB
testcase_06 AC 170 ms
42,524 KB
testcase_07 AC 259 ms
47,432 KB
testcase_08 AC 478 ms
49,976 KB
testcase_09 AC 569 ms
51,400 KB
testcase_10 AC 760 ms
64,148 KB
testcase_11 AC 864 ms
63,972 KB
testcase_12 AC 885 ms
64,284 KB
testcase_13 AC 847 ms
64,148 KB
testcase_14 AC 867 ms
64,360 KB
testcase_15 AC 831 ms
64,176 KB
testcase_16 AC 900 ms
64,212 KB
testcase_17 AC 114 ms
40,956 KB
testcase_18 AC 115 ms
41,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder.tutorial.sum.bywhitespace;

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {

	private static final String SEPARATOR = " ";

	public static void main(String[] args) {
		new Main().execute();

	}

	private void execute() {
		List<Long> nums = read();

		long sum = 0L;

		for (Long num : nums) {
			sum += num;
		}

		System.out.println(sum);
	}

	private List<Long> read() {
		Scanner sc = new Scanner(System.in);
		int length = sc.nextInt();

		List<Long> numsList = new ArrayList<>();
		for (int i = 0; i < length; i++) {
			numsList.add(sc.nextLong());
		}
		return numsList;
	}

}
0