結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー ウップス600ウップス600
提出日時 2022-01-05 20:23:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,046 ms / 3,000 ms
コード長 372 bytes
コンパイル時間 3,488 ms
コンパイル使用メモリ 74,108 KB
実行使用メモリ 69,156 KB
最終ジャッジ日時 2024-11-06 07:26:16
合計ジャッジ時間 15,097 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,972 KB
testcase_01 AC 136 ms
54,112 KB
testcase_02 AC 137 ms
54,400 KB
testcase_03 AC 139 ms
54,096 KB
testcase_04 AC 140 ms
54,044 KB
testcase_05 AC 149 ms
54,256 KB
testcase_06 AC 200 ms
54,508 KB
testcase_07 AC 295 ms
58,220 KB
testcase_08 AC 545 ms
59,192 KB
testcase_09 AC 640 ms
59,444 KB
testcase_10 AC 994 ms
69,048 KB
testcase_11 AC 1,011 ms
69,076 KB
testcase_12 AC 1,019 ms
69,020 KB
testcase_13 AC 1,006 ms
68,996 KB
testcase_14 AC 1,019 ms
69,156 KB
testcase_15 AC 1,007 ms
69,060 KB
testcase_16 AC 1,046 ms
69,020 KB
testcase_17 AC 133 ms
54,160 KB
testcase_18 AC 133 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java. util. Scanner;

public class main{
	public static void main (String[] args){
		Scanner scanner = new Scanner (System. in);
		
		//行数
		int count = scanner. nextInt();
		
		//数
		long number;
		//答え
		long answer = 0;
		for (int j = 0; j < count; j ++){
			number = scanner. nextLong();
			answer += number;
		}
		System. out. println (answer);
	}
}
0