結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー springspring
提出日時 2019-06-12 11:27:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,001 ms / 3,000 ms
コード長 308 bytes
コンパイル時間 2,091 ms
コンパイル使用メモリ 73,972 KB
実行使用メモリ 58,016 KB
最終ジャッジ日時 2024-10-09 17:42:25
合計ジャッジ時間 12,920 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,464 KB
testcase_01 AC 127 ms
41,344 KB
testcase_02 AC 137 ms
41,164 KB
testcase_03 AC 136 ms
41,488 KB
testcase_04 AC 127 ms
40,248 KB
testcase_05 AC 149 ms
41,268 KB
testcase_06 AC 195 ms
42,440 KB
testcase_07 AC 282 ms
47,324 KB
testcase_08 AC 543 ms
47,532 KB
testcase_09 AC 655 ms
48,228 KB
testcase_10 AC 979 ms
57,576 KB
testcase_11 AC 1,001 ms
57,712 KB
testcase_12 AC 909 ms
57,872 KB
testcase_13 AC 917 ms
57,656 KB
testcase_14 AC 973 ms
58,016 KB
testcase_15 AC 983 ms
57,744 KB
testcase_16 AC 969 ms
57,476 KB
testcase_17 AC 110 ms
40,180 KB
testcase_18 AC 123 ms
41,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int count = sc.nextInt();
		long result = 0;
		for(int i=0;i<count;i++){
			long input = sc.nextLong();
			result += input;
		}
		System.out.println(result);
	}//mainmethod

} //
0