結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー QED0302QED0302
提出日時 2018-05-09 15:53:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 951 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 4,616 ms
コンパイル使用メモリ 74,100 KB
実行使用メモリ 58,112 KB
最終ジャッジ日時 2024-06-28 02:46:50
合計ジャッジ時間 15,748 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
39,864 KB
testcase_01 AC 127 ms
41,372 KB
testcase_02 AC 128 ms
41,052 KB
testcase_03 AC 125 ms
41,096 KB
testcase_04 AC 127 ms
41,220 KB
testcase_05 AC 139 ms
41,584 KB
testcase_06 AC 187 ms
42,112 KB
testcase_07 AC 290 ms
46,976 KB
testcase_08 AC 559 ms
48,216 KB
testcase_09 AC 635 ms
47,844 KB
testcase_10 AC 946 ms
57,264 KB
testcase_11 AC 928 ms
57,536 KB
testcase_12 AC 923 ms
57,716 KB
testcase_13 AC 851 ms
57,592 KB
testcase_14 AC 941 ms
58,112 KB
testcase_15 AC 951 ms
57,820 KB
testcase_16 AC 943 ms
57,564 KB
testcase_17 AC 128 ms
40,956 KB
testcase_18 AC 127 ms
41,172 KB
権限があれば一括ダウンロードができます

ソースコード

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.nextLong();
			 totalnum += addnum; 
		}
		System.out.print(totalnum);
	}
}
0