結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー 水野嶺水野嶺
提出日時 2020-05-14 13:49:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,024 ms / 3,000 ms
コード長 431 bytes
コンパイル時間 2,219 ms
コンパイル使用メモリ 74,664 KB
実行使用メモリ 57,768 KB
最終ジャッジ日時 2024-09-15 05:20:33
合計ジャッジ時間 13,687 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
40,768 KB
testcase_01 AC 132 ms
40,928 KB
testcase_02 AC 132 ms
40,872 KB
testcase_03 AC 132 ms
41,052 KB
testcase_04 AC 130 ms
40,692 KB
testcase_05 AC 145 ms
41,156 KB
testcase_06 AC 193 ms
42,400 KB
testcase_07 AC 282 ms
47,064 KB
testcase_08 AC 551 ms
47,712 KB
testcase_09 AC 632 ms
47,664 KB
testcase_10 AC 943 ms
57,444 KB
testcase_11 AC 952 ms
57,536 KB
testcase_12 AC 939 ms
57,008 KB
testcase_13 AC 981 ms
56,904 KB
testcase_14 AC 994 ms
57,180 KB
testcase_15 AC 989 ms
57,108 KB
testcase_16 AC 1,024 ms
57,768 KB
testcase_17 AC 115 ms
40,096 KB
testcase_18 AC 129 ms
41,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Goukei2
{
	public static void main (String[] args) throws java.lang.Exception
	{
		// your code goes here
		long sum = 0;
		long m;
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		
		for(int i=1;i<=n;i++){
			m = sc.nextLong();
			sum += m;
		}
		
		System.out.println(sum);
	}
}
0