結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー dogwood0424dogwood0424
提出日時 2017-11-27 20:32:40
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,006 ms / 3,000 ms
コード長 266 bytes
コンパイル時間 3,506 ms
コンパイル使用メモリ 74,088 KB
実行使用メモリ 57,916 KB
最終ジャッジ日時 2024-12-25 18:04:39
合計ジャッジ時間 13,652 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,148 KB
testcase_01 AC 127 ms
41,068 KB
testcase_02 AC 122 ms
40,260 KB
testcase_03 AC 110 ms
40,024 KB
testcase_04 AC 130 ms
41,168 KB
testcase_05 AC 138 ms
41,500 KB
testcase_06 AC 186 ms
42,388 KB
testcase_07 AC 287 ms
47,024 KB
testcase_08 AC 542 ms
47,896 KB
testcase_09 AC 636 ms
47,852 KB
testcase_10 AC 918 ms
57,692 KB
testcase_11 AC 928 ms
57,524 KB
testcase_12 AC 958 ms
57,604 KB
testcase_13 AC 921 ms
57,520 KB
testcase_14 AC 904 ms
57,916 KB
testcase_15 AC 912 ms
57,816 KB
testcase_16 AC 1,006 ms
57,824 KB
testcase_17 AC 111 ms
40,312 KB
testcase_18 AC 129 ms
41,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No9009 {
	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