結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,360 KB
testcase_01 AC 124 ms
40,800 KB
testcase_02 AC 128 ms
41,260 KB
testcase_03 AC 114 ms
41,024 KB
testcase_04 AC 112 ms
41,032 KB
testcase_05 AC 131 ms
41,152 KB
testcase_06 AC 182 ms
42,408 KB
testcase_07 AC 270 ms
46,380 KB
testcase_08 AC 547 ms
48,200 KB
testcase_09 AC 592 ms
47,980 KB
testcase_10 AC 968 ms
57,704 KB
testcase_11 AC 878 ms
57,764 KB
testcase_12 AC 890 ms
57,496 KB
testcase_13 AC 926 ms
57,676 KB
testcase_14 AC 882 ms
57,340 KB
testcase_15 AC 938 ms
57,468 KB
testcase_16 AC 985 ms
57,764 KB
testcase_17 AC 119 ms
41,020 KB
testcase_18 AC 123 ms
40,776 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