結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー kazapyon27kazapyon27
提出日時 2017-04-29 21:54:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,024 ms / 2,000 ms
コード長 324 bytes
コンパイル時間 3,391 ms
コンパイル使用メモリ 74,280 KB
実行使用メモリ 58,284 KB
最終ジャッジ日時 2024-09-13 19:19:01
合計ジャッジ時間 14,558 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,364 KB
testcase_01 AC 131 ms
41,212 KB
testcase_02 AC 129 ms
41,260 KB
testcase_03 AC 131 ms
41,228 KB
testcase_04 AC 133 ms
41,292 KB
testcase_05 AC 143 ms
41,368 KB
testcase_06 AC 193 ms
42,336 KB
testcase_07 AC 293 ms
47,128 KB
testcase_08 AC 546 ms
48,016 KB
testcase_09 AC 669 ms
48,708 KB
testcase_10 AC 957 ms
57,868 KB
testcase_11 AC 957 ms
58,284 KB
testcase_12 AC 968 ms
57,692 KB
testcase_13 AC 942 ms
58,272 KB
testcase_14 AC 959 ms
58,116 KB
testcase_15 AC 893 ms
58,112 KB
testcase_16 AC 1,024 ms
57,436 KB
testcase_17 AC 130 ms
41,100 KB
testcase_18 AC 131 ms
41,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class No9008 {
	public static void main(String[] args) {
		int N;long a,Goukei=0;
		try(Scanner input =new Scanner(System.in)){
			N=input.nextInt();
			for(int i=1;i<=N;i++){
				Goukei+=input.nextLong();
			}
			System.out.println(Goukei);
		}catch(Exception e){
			e.printStackTrace();
		}
	}
}
0