結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー Mcpu3Mcpu3
提出日時 2018-04-15 22:41:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,061 ms / 3,000 ms
コード長 280 bytes
コンパイル時間 2,012 ms
コンパイル使用メモリ 74,124 KB
実行使用メモリ 62,676 KB
最終ジャッジ日時 2024-06-27 00:10:02
合計ジャッジ時間 12,241 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,252 KB
testcase_01 AC 124 ms
41,136 KB
testcase_02 AC 124 ms
41,592 KB
testcase_03 AC 128 ms
41,560 KB
testcase_04 AC 126 ms
41,504 KB
testcase_05 AC 135 ms
42,008 KB
testcase_06 AC 184 ms
42,496 KB
testcase_07 AC 280 ms
46,696 KB
testcase_08 AC 545 ms
48,320 KB
testcase_09 AC 552 ms
47,864 KB
testcase_10 AC 894 ms
57,988 KB
testcase_11 AC 954 ms
58,016 KB
testcase_12 AC 964 ms
57,716 KB
testcase_13 AC 975 ms
57,896 KB
testcase_14 AC 1,016 ms
58,000 KB
testcase_15 AC 963 ms
57,892 KB
testcase_16 AC 1,061 ms
62,676 KB
testcase_17 AC 111 ms
40,152 KB
testcase_18 AC 126 ms
41,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no9009{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		int n=stdIn.nextInt();
		long a;
		long sum=0;
		for(int i=0;i<n;i++) {
			a=stdIn.nextLong();
			sum+=a;
		}
		System.out.println(sum);
	}
}
0