結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー MatumoMatumo
提出日時 2018-07-13 02:06:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 856 ms / 3,000 ms
コード長 277 bytes
コンパイル時間 1,752 ms
コンパイル使用メモリ 73,704 KB
実行使用メモリ 57,892 KB
最終ジャッジ日時 2024-10-05 00:35:22
合計ジャッジ時間 11,060 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,196 KB
testcase_01 AC 117 ms
39,980 KB
testcase_02 AC 120 ms
41,228 KB
testcase_03 AC 116 ms
41,168 KB
testcase_04 AC 110 ms
41,240 KB
testcase_05 AC 126 ms
41,644 KB
testcase_06 AC 168 ms
42,392 KB
testcase_07 AC 268 ms
47,304 KB
testcase_08 AC 453 ms
48,104 KB
testcase_09 AC 602 ms
47,776 KB
testcase_10 AC 782 ms
57,892 KB
testcase_11 AC 739 ms
57,816 KB
testcase_12 AC 754 ms
57,652 KB
testcase_13 AC 811 ms
57,532 KB
testcase_14 AC 850 ms
57,652 KB
testcase_15 AC 839 ms
57,624 KB
testcase_16 AC 856 ms
57,760 KB
testcase_17 AC 112 ms
40,088 KB
testcase_18 AC 101 ms
41,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	static Scanner sc = new Scanner(System.in);

	public static void main(String[] args) {
		int n = sc.nextInt();
		
		long ans = 0;
		for(int i = 0; i < n; i++) {
			ans += sc.nextLong();
		}
		System.out.println(ans);
		
    }
}
0