結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー kuramubonnkuramubonn
提出日時 2023-02-01 16:21:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,086 ms / 2,000 ms
コード長 261 bytes
コンパイル時間 2,286 ms
コンパイル使用メモリ 74,348 KB
実行使用メモリ 69,392 KB
最終ジャッジ日時 2024-07-01 11:20:15
合計ジャッジ時間 13,567 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,108 KB
testcase_01 AC 133 ms
53,968 KB
testcase_02 AC 135 ms
53,760 KB
testcase_03 AC 133 ms
54,024 KB
testcase_04 AC 139 ms
53,972 KB
testcase_05 AC 148 ms
54,012 KB
testcase_06 AC 200 ms
54,292 KB
testcase_07 AC 303 ms
58,052 KB
testcase_08 AC 588 ms
59,316 KB
testcase_09 AC 639 ms
59,284 KB
testcase_10 AC 963 ms
69,176 KB
testcase_11 AC 991 ms
69,116 KB
testcase_12 AC 999 ms
68,980 KB
testcase_13 AC 1,045 ms
69,392 KB
testcase_14 AC 1,068 ms
68,952 KB
testcase_15 AC 1,041 ms
69,156 KB
testcase_16 AC 1,086 ms
68,596 KB
testcase_17 AC 137 ms
53,884 KB
testcase_18 AC 133 ms
54,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main{
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long total = 0;
		
		for(int i = 0 ; i < n ; i++) {
			total += sc.nextLong();
		}
		System.out.println(total);
	}
}
0