結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー oyafusooyafuso
提出日時 2019-03-11 10:40:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 523 ms / 2,000 ms
コード長 785 bytes
コンパイル時間 2,319 ms
コンパイル使用メモリ 75,908 KB
実行使用メモリ 87,136 KB
最終ジャッジ日時 2024-06-23 15:26:56
合計ジャッジ時間 9,252 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,056 KB
testcase_01 AC 127 ms
54,068 KB
testcase_02 AC 129 ms
53,976 KB
testcase_03 AC 126 ms
54,000 KB
testcase_04 AC 127 ms
54,052 KB
testcase_05 AC 137 ms
54,384 KB
testcase_06 AC 176 ms
54,600 KB
testcase_07 AC 260 ms
56,864 KB
testcase_08 AC 393 ms
64,468 KB
testcase_09 AC 360 ms
64,412 KB
testcase_10 AC 508 ms
82,268 KB
testcase_11 AC 519 ms
82,140 KB
testcase_12 AC 516 ms
82,752 KB
testcase_13 AC 515 ms
83,280 KB
testcase_14 AC 515 ms
83,788 KB
testcase_15 AC 518 ms
85,712 KB
testcase_16 AC 523 ms
87,136 KB
testcase_17 AC 128 ms
54,120 KB
testcase_18 AC 128 ms
54,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {

	private static final String SPLIT_STR = " ";

	public static void main(String[] args) {
		// Scanner生成
		Scanner sc = new Scanner(System.in);
		// 入力設定
		String input = sc.nextLine();
		int listSize = Integer.parseInt(input);
		List<Long> numList = new ArrayList<>(listSize);
		sc.reset();
		input = sc.nextLine();
		String[] split = input.split(SPLIT_STR);
		for (int i = 0; i < split.length; i++) {
			numList.add(Long.parseLong(split[i]));
		}
		// Scannerクローズ
		sc.close();

		/* メイン処理開始 */
		// 変数初期化
		long result = 0;
		// 結果設定
		for (int i = 0; i < numList.size(); i++) {
			result += numList.get(i);
		}
		/* メイン処理終了 */

		// 結果出力
		System.out.println(result);
	}
}
0