結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー kuramubonnkuramubonn
提出日時 2023-02-01 16:23:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,023 ms / 3,000 ms
コード長 261 bytes
コンパイル時間 2,309 ms
コンパイル使用メモリ 73,748 KB
実行使用メモリ 69,356 KB
最終ジャッジ日時 2024-07-01 11:21:38
合計ジャッジ時間 13,164 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,304 KB
testcase_01 AC 132 ms
54,056 KB
testcase_02 AC 128 ms
54,180 KB
testcase_03 AC 131 ms
54,128 KB
testcase_04 AC 133 ms
53,968 KB
testcase_05 AC 144 ms
53,976 KB
testcase_06 AC 189 ms
54,044 KB
testcase_07 AC 292 ms
57,424 KB
testcase_08 AC 529 ms
59,292 KB
testcase_09 AC 671 ms
59,524 KB
testcase_10 AC 973 ms
68,980 KB
testcase_11 AC 884 ms
69,060 KB
testcase_12 AC 965 ms
69,152 KB
testcase_13 AC 1,015 ms
68,952 KB
testcase_14 AC 1,023 ms
69,112 KB
testcase_15 AC 973 ms
69,356 KB
testcase_16 AC 1,019 ms
68,428 KB
testcase_17 AC 131 ms
54,656 KB
testcase_18 AC 131 ms
54,036 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