結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー kazapyon27kazapyon27
提出日時 2017-05-02 01:28:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,025 ms / 3,000 ms
コード長 324 bytes
コンパイル時間 3,392 ms
コンパイル使用メモリ 74,220 KB
実行使用メモリ 57,844 KB
最終ジャッジ日時 2024-06-07 12:39:49
合計ジャッジ時間 14,253 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,332 KB
testcase_01 AC 132 ms
40,924 KB
testcase_02 AC 131 ms
41,388 KB
testcase_03 AC 131 ms
41,156 KB
testcase_04 AC 129 ms
41,372 KB
testcase_05 AC 143 ms
41,500 KB
testcase_06 AC 194 ms
42,428 KB
testcase_07 AC 283 ms
46,912 KB
testcase_08 AC 551 ms
47,872 KB
testcase_09 AC 687 ms
48,060 KB
testcase_10 AC 1,016 ms
57,648 KB
testcase_11 AC 981 ms
57,796 KB
testcase_12 AC 987 ms
57,580 KB
testcase_13 AC 1,000 ms
57,660 KB
testcase_14 AC 1,024 ms
57,604 KB
testcase_15 AC 1,025 ms
57,612 KB
testcase_16 AC 1,011 ms
57,844 KB
testcase_17 AC 130 ms
41,340 KB
testcase_18 AC 131 ms
41,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class No9009 {
	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