結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー dogwood0424dogwood0424
提出日時 2017-11-25 22:22:04
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,006 ms / 2,000 ms
コード長 265 bytes
コンパイル時間 4,126 ms
コンパイル使用メモリ 74,772 KB
実行使用メモリ 57,832 KB
最終ジャッジ日時 2024-11-27 10:12:50
合計ジャッジ時間 12,653 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
40,120 KB
testcase_01 AC 103 ms
40,352 KB
testcase_02 AC 114 ms
40,132 KB
testcase_03 AC 115 ms
41,152 KB
testcase_04 AC 114 ms
41,172 KB
testcase_05 AC 125 ms
41,284 KB
testcase_06 AC 174 ms
42,052 KB
testcase_07 AC 267 ms
46,884 KB
testcase_08 AC 543 ms
48,092 KB
testcase_09 AC 647 ms
47,860 KB
testcase_10 AC 851 ms
57,580 KB
testcase_11 AC 864 ms
57,396 KB
testcase_12 AC 966 ms
57,624 KB
testcase_13 AC 880 ms
57,632 KB
testcase_14 AC 867 ms
57,832 KB
testcase_15 AC 971 ms
57,484 KB
testcase_16 AC 1,006 ms
57,460 KB
testcase_17 AC 110 ms
39,856 KB
testcase_18 AC 119 ms
41,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No9008 {
	public static void main(String[]args) {
		Scanner sc = new Scanner(System.in);

		int n = sc.nextInt();

		long sum = 0;

		for(int i=0; i<n;i++) {


			sum += sc.nextLong();
		}

		System.out.println(sum);


	}


}
0