結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,120 KB
testcase_01 AC 105 ms
39,924 KB
testcase_02 AC 111 ms
40,208 KB
testcase_03 AC 120 ms
41,064 KB
testcase_04 AC 116 ms
41,180 KB
testcase_05 AC 126 ms
41,148 KB
testcase_06 AC 170 ms
42,508 KB
testcase_07 AC 269 ms
47,508 KB
testcase_08 AC 485 ms
49,680 KB
testcase_09 AC 475 ms
50,052 KB
testcase_10 AC 839 ms
63,768 KB
testcase_11 AC 825 ms
64,076 KB
testcase_12 AC 859 ms
63,876 KB
testcase_13 AC 834 ms
64,124 KB
testcase_14 AC 840 ms
63,948 KB
testcase_15 AC 800 ms
64,268 KB
testcase_16 AC 846 ms
64,220 KB
testcase_17 AC 99 ms
39,848 KB
testcase_18 AC 114 ms
41,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder.tutorial.sum.bywhitespace;

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

public class Main {

	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() {
		@SuppressWarnings("resource")
		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