結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー gomagoma
提出日時 2017-09-14 20:29:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,093 ms / 3,000 ms
コード長 290 bytes
コンパイル時間 2,059 ms
コンパイル使用メモリ 74,136 KB
実行使用メモリ 57,812 KB
最終ジャッジ日時 2024-06-07 13:30:09
合計ジャッジ時間 13,148 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,204 KB
testcase_01 AC 118 ms
40,256 KB
testcase_02 AC 135 ms
41,424 KB
testcase_03 AC 133 ms
41,232 KB
testcase_04 AC 136 ms
41,056 KB
testcase_05 AC 148 ms
41,344 KB
testcase_06 AC 205 ms
42,364 KB
testcase_07 AC 306 ms
46,144 KB
testcase_08 AC 552 ms
47,712 KB
testcase_09 AC 682 ms
47,980 KB
testcase_10 AC 1,012 ms
57,812 KB
testcase_11 AC 1,064 ms
57,640 KB
testcase_12 AC 1,042 ms
57,476 KB
testcase_13 AC 983 ms
57,496 KB
testcase_14 AC 965 ms
57,472 KB
testcase_15 AC 1,043 ms
57,656 KB
testcase_16 AC 1,093 ms
57,292 KB
testcase_17 AC 137 ms
41,132 KB
testcase_18 AC 134 ms
40,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		int N = 0;
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long ans = 0;

		for (int i = 0; i < n; i++) {
			long m = sc.nextLong();
			ans += m;
		}
		System.out.println(ans);
	}
}
0