結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー QED0302QED0302
提出日時 2018-05-10 15:08:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 868 ms / 3,000 ms
コード長 424 bytes
コンパイル時間 3,449 ms
コンパイル使用メモリ 74,732 KB
実行使用メモリ 54,240 KB
最終ジャッジ日時 2024-06-28 02:57:42
合計ジャッジ時間 12,930 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
40,000 KB
testcase_01 AC 123 ms
41,236 KB
testcase_02 AC 125 ms
40,884 KB
testcase_03 AC 122 ms
41,240 KB
testcase_04 AC 121 ms
41,476 KB
testcase_05 AC 128 ms
41,116 KB
testcase_06 AC 168 ms
41,464 KB
testcase_07 AC 244 ms
45,712 KB
testcase_08 AC 416 ms
47,516 KB
testcase_09 AC 545 ms
51,644 KB
testcase_10 AC 859 ms
53,788 KB
testcase_11 AC 824 ms
53,992 KB
testcase_12 AC 830 ms
53,988 KB
testcase_13 AC 863 ms
54,240 KB
testcase_14 AC 868 ms
54,032 KB
testcase_15 AC 867 ms
54,116 KB
testcase_16 AC 862 ms
54,224 KB
testcase_17 AC 112 ms
39,988 KB
testcase_18 AC 113 ms
39,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.io.File;
import java.io.FileNotFoundException;

public class enter{
	public static void main(String[] args){
		
			Long totalnum = 0L; 

			Scanner sc = new Scanner(System.in);
			int N = Integer.parseInt(sc.nextLine());
			for(int i = 0;i<N;i++){				
				String str = sc.nextLine();
				Long num = Long.parseLong(str);
				totalnum += num;
			}
			System.out.println(totalnum);
		
	}
}
0