結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー QED0302QED0302
提出日時 2018-05-09 15:40:32
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 334 bytes
コンパイル時間 3,470 ms
コンパイル使用メモリ 75,464 KB
実行使用メモリ 58,040 KB
最終ジャッジ日時 2024-06-28 02:44:44
合計ジャッジ時間 13,079 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,244 KB
testcase_01 AC 133 ms
41,196 KB
testcase_02 AC 132 ms
41,220 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 627 ms
48,092 KB
testcase_10 AC 972 ms
57,464 KB
testcase_11 AC 892 ms
57,972 KB
testcase_12 AC 948 ms
57,848 KB
testcase_13 AC 959 ms
58,040 KB
testcase_14 AC 968 ms
57,824 KB
testcase_15 AC 982 ms
57,836 KB
testcase_16 AC 1,009 ms
57,852 KB
testcase_17 AC 129 ms
41,256 KB
testcase_18 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class space{
	public static void main(String[] args){
		long totalnum=0;


		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		Scanner sc2 = new Scanner(System.in);
		for(int i = 0;i < N;i++){
			long addnum = sc.nextInt();
			 totalnum += addnum; 
		}
		System.out.print(totalnum);
	}
}
0