結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー ribenngeribennge
提出日時 2018-08-21 10:33:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 970 ms / 2,000 ms
コード長 277 bytes
コンパイル時間 2,350 ms
コンパイル使用メモリ 73,996 KB
実行使用メモリ 58,040 KB
最終ジャッジ日時 2024-05-08 06:51:16
合計ジャッジ時間 12,083 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,240 KB
testcase_01 AC 129 ms
41,608 KB
testcase_02 AC 115 ms
41,288 KB
testcase_03 AC 129 ms
41,284 KB
testcase_04 AC 132 ms
41,232 KB
testcase_05 AC 140 ms
41,356 KB
testcase_06 AC 186 ms
42,112 KB
testcase_07 AC 284 ms
46,744 KB
testcase_08 AC 531 ms
47,788 KB
testcase_09 AC 556 ms
47,824 KB
testcase_10 AC 931 ms
57,900 KB
testcase_11 AC 924 ms
57,920 KB
testcase_12 AC 910 ms
56,864 KB
testcase_13 AC 906 ms
56,824 KB
testcase_14 AC 914 ms
57,988 KB
testcase_15 AC 943 ms
58,040 KB
testcase_16 AC 970 ms
58,000 KB
testcase_17 AC 125 ms
41,468 KB
testcase_18 AC 127 ms
41,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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