結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー natume_shikinatume_shiki
提出日時 2018-08-24 04:50:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 337 ms / 2,000 ms
コード長 563 bytes
コンパイル時間 2,708 ms
コンパイル使用メモリ 75,020 KB
実行使用メモリ 86,520 KB
最終ジャッジ日時 2024-06-09 21:46:55
合計ジャッジ時間 6,991 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
50,284 KB
testcase_01 AC 49 ms
49,924 KB
testcase_02 AC 50 ms
50,020 KB
testcase_03 AC 48 ms
50,152 KB
testcase_04 AC 47 ms
50,140 KB
testcase_05 AC 49 ms
50,340 KB
testcase_06 AC 59 ms
50,940 KB
testcase_07 AC 119 ms
52,472 KB
testcase_08 AC 208 ms
60,172 KB
testcase_09 AC 196 ms
60,476 KB
testcase_10 AC 319 ms
84,904 KB
testcase_11 AC 315 ms
85,308 KB
testcase_12 AC 331 ms
84,088 KB
testcase_13 AC 303 ms
84,580 KB
testcase_14 AC 332 ms
85,236 KB
testcase_15 AC 333 ms
85,752 KB
testcase_16 AC 337 ms
86,520 KB
testcase_17 AC 50 ms
50,184 KB
testcase_18 AC 49 ms
50,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
public class No_9008{
	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)){
				String sNumber = br.readLine();
				String[] sNum = sNumber.split(" ");
				Long[] num = new Long[sNum.length];
				for(int i = 0; i < num.length; i++){
					num[i] = Long.parseLong(sNum[i]);
					sum += num[i];
				}
			}
			System.out.println(sum);
		}catch(IOException e){}
	}
}
0