結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー oyafusooyafuso
提出日時 2019-03-11 10:43:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 965 ms / 3,000 ms
コード長 737 bytes
コンパイル時間 2,058 ms
コンパイル使用メモリ 75,940 KB
実行使用メモリ 68,308 KB
最終ジャッジ日時 2024-06-23 15:27:14
合計ジャッジ時間 12,007 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,104 KB
testcase_01 AC 128 ms
53,956 KB
testcase_02 AC 114 ms
53,084 KB
testcase_03 AC 127 ms
54,284 KB
testcase_04 AC 128 ms
54,124 KB
testcase_05 AC 139 ms
54,216 KB
testcase_06 AC 194 ms
54,412 KB
testcase_07 AC 264 ms
57,828 KB
testcase_08 AC 461 ms
58,452 KB
testcase_09 AC 598 ms
65,536 KB
testcase_10 AC 887 ms
67,968 KB
testcase_11 AC 921 ms
68,108 KB
testcase_12 AC 965 ms
67,800 KB
testcase_13 AC 927 ms
68,308 KB
testcase_14 AC 920 ms
68,024 KB
testcase_15 AC 924 ms
68,024 KB
testcase_16 AC 936 ms
67,980 KB
testcase_17 AC 128 ms
54,248 KB
testcase_18 AC 128 ms
54,040 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);
		for (int i = 0; i < listSize; i++) {
			sc.reset();
			input = sc.nextLine();
			numList.add(Long.parseLong(input));
		}
		// Scannerクローズ
		sc.close();

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

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