結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,052 KB
testcase_01 AC 119 ms
41,172 KB
testcase_02 AC 124 ms
41,192 KB
testcase_03 AC 118 ms
41,156 KB
testcase_04 AC 125 ms
41,328 KB
testcase_05 AC 137 ms
41,316 KB
testcase_06 AC 183 ms
42,200 KB
testcase_07 AC 271 ms
46,712 KB
testcase_08 AC 502 ms
47,892 KB
testcase_09 AC 601 ms
47,740 KB
testcase_10 AC 839 ms
57,648 KB
testcase_11 AC 860 ms
57,844 KB
testcase_12 AC 894 ms
57,500 KB
testcase_13 AC 993 ms
57,636 KB
testcase_14 AC 903 ms
57,680 KB
testcase_15 AC 847 ms
57,656 KB
testcase_16 AC 922 ms
57,896 KB
testcase_17 AC 116 ms
40,924 KB
testcase_18 AC 118 ms
41,176 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