結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー GchansanjouGchansanjou
提出日時 2018-02-09 01:32:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 227 ms / 3,000 ms
コード長 646 bytes
コンパイル時間 3,256 ms
コンパイル使用メモリ 74,728 KB
実行使用メモリ 57,676 KB
最終ジャッジ日時 2024-10-01 21:13:29
合計ジャッジ時間 7,233 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,404 KB
testcase_01 AC 54 ms
50,344 KB
testcase_02 AC 54 ms
50,444 KB
testcase_03 AC 56 ms
50,412 KB
testcase_04 AC 55 ms
50,276 KB
testcase_05 AC 55 ms
50,404 KB
testcase_06 AC 66 ms
51,112 KB
testcase_07 AC 110 ms
52,168 KB
testcase_08 AC 158 ms
54,744 KB
testcase_09 AC 174 ms
55,228 KB
testcase_10 AC 220 ms
56,072 KB
testcase_11 AC 203 ms
55,196 KB
testcase_12 AC 218 ms
55,364 KB
testcase_13 AC 227 ms
55,356 KB
testcase_14 AC 224 ms
57,676 KB
testcase_15 AC 219 ms
57,556 KB
testcase_16 AC 211 ms
57,548 KB
testcase_17 AC 56 ms
50,340 KB
testcase_18 AC 58 ms
50,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukiCoder;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No09009 {

	public static void main(String[] args) {
		BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in));

		try {
			int size = Integer.parseInt(bufferedReader.readLine());

			String[] input = new String[size];
			long ans = 0;
			for (int i = 0 ; i < size ; i++) {
				ans = ans + Long.parseLong(bufferedReader.readLine());
			}
			System.out.println(ans);
		} catch (NumberFormatException e) {
			e.printStackTrace();
		} catch (IOException e) {
			e.printStackTrace();
		}
	}

}
0