結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー natume_shikinatume_shiki
提出日時 2018-08-29 02:58:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 237 ms / 3,000 ms
コード長 489 bytes
コンパイル時間 3,901 ms
コンパイル使用メモリ 73,872 KB
実行使用メモリ 47,972 KB
最終ジャッジ日時 2024-07-19 03:39:11
合計ジャッジ時間 7,817 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,496 KB
testcase_01 AC 52 ms
37,072 KB
testcase_02 AC 52 ms
36,972 KB
testcase_03 AC 51 ms
36,824 KB
testcase_04 AC 53 ms
37,048 KB
testcase_05 AC 53 ms
36,804 KB
testcase_06 AC 68 ms
38,180 KB
testcase_07 AC 109 ms
39,260 KB
testcase_08 AC 164 ms
42,424 KB
testcase_09 AC 182 ms
43,944 KB
testcase_10 AC 217 ms
47,024 KB
testcase_11 AC 217 ms
47,148 KB
testcase_12 AC 229 ms
47,148 KB
testcase_13 AC 237 ms
47,764 KB
testcase_14 AC 228 ms
47,792 KB
testcase_15 AC 217 ms
47,608 KB
testcase_16 AC 228 ms
47,972 KB
testcase_17 AC 51 ms
37,016 KB
testcase_18 AC 50 ms
36,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
public class No_9009{
	public static void main(String args[]){
		try{
			long sum = 0;
			BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
			int counter = Integer.parseInt(br.readLine());
			if((2 <= counter) && (counter <= 500000)){
				long[] num = new long[counter];
				for(int i = 0; i < num.length; i++){
					num[i] = Long.parseLong(br.readLine());
					sum += num[i];
				}
			}
			System.out.println(sum);
		}catch(IOException e){}
	}
}
0