結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,632 KB
testcase_01 AC 131 ms
41,436 KB
testcase_02 AC 130 ms
41,324 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 630 ms
48,168 KB
testcase_10 AC 939 ms
57,832 KB
testcase_11 AC 867 ms
58,020 KB
testcase_12 AC 934 ms
58,060 KB
testcase_13 AC 936 ms
57,612 KB
testcase_14 AC 993 ms
58,092 KB
testcase_15 AC 942 ms
57,880 KB
testcase_16 AC 1,082 ms
57,700 KB
testcase_17 AC 133 ms
41,272 KB
testcase_18 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class space{
	public static void main(String[] args){
		int 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++){
			int addnum = sc.nextInt();
			 totalnum += addnum; 
		}
		System.out.print(totalnum);
	}
}
0