結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー GchansanjouGchansanjou
提出日時 2018-02-09 01:10:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 377 ms / 2,000 ms
コード長 678 bytes
コンパイル時間 3,997 ms
コンパイル使用メモリ 74,668 KB
実行使用メモリ 76,236 KB
最終ジャッジ日時 2024-10-01 21:08:12
合計ジャッジ時間 7,619 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,172 KB
testcase_01 AC 53 ms
50,024 KB
testcase_02 AC 52 ms
50,204 KB
testcase_03 AC 52 ms
49,880 KB
testcase_04 AC 53 ms
50,012 KB
testcase_05 AC 53 ms
50,248 KB
testcase_06 AC 63 ms
50,856 KB
testcase_07 AC 115 ms
52,188 KB
testcase_08 AC 199 ms
55,936 KB
testcase_09 AC 208 ms
59,896 KB
testcase_10 AC 352 ms
74,732 KB
testcase_11 AC 348 ms
75,304 KB
testcase_12 AC 355 ms
75,412 KB
testcase_13 AC 361 ms
75,520 KB
testcase_14 AC 352 ms
75,924 KB
testcase_15 AC 339 ms
75,768 KB
testcase_16 AC 377 ms
76,236 KB
testcase_17 AC 52 ms
36,980 KB
testcase_18 AC 53 ms
37,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukiCoder;

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

public class No09008 {

	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];
			input = bufferedReader.readLine().split(" ");
			long ans = 0;
			for (int i = 0 ; i < size ; i++) {
				ans = ans + Long.parseLong(input[i]);
			}
			System.out.println(ans);
		} catch (IOException e) {
			e.printStackTrace();
		} catch (NumberFormatException e) {
			e.printStackTrace();
		}

	}

}
0