結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー ikawaiikawai
提出日時 2023-09-01 14:17:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 882 ms / 2,000 ms
コード長 304 bytes
コンパイル時間 2,344 ms
コンパイル使用メモリ 74,024 KB
実行使用メモリ 57,944 KB
最終ジャッジ日時 2024-06-11 02:30:50
合計ジャッジ時間 11,080 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
40,052 KB
testcase_01 AC 113 ms
41,152 KB
testcase_02 AC 105 ms
40,196 KB
testcase_03 AC 102 ms
40,276 KB
testcase_04 AC 107 ms
41,192 KB
testcase_05 AC 125 ms
41,668 KB
testcase_06 AC 169 ms
42,468 KB
testcase_07 AC 269 ms
47,200 KB
testcase_08 AC 488 ms
48,148 KB
testcase_09 AC 441 ms
46,688 KB
testcase_10 AC 776 ms
57,720 KB
testcase_11 AC 795 ms
57,904 KB
testcase_12 AC 836 ms
57,908 KB
testcase_13 AC 774 ms
57,912 KB
testcase_14 AC 811 ms
57,684 KB
testcase_15 AC 754 ms
57,928 KB
testcase_16 AC 882 ms
57,944 KB
testcase_17 AC 106 ms
41,212 KB
testcase_18 AC 109 ms
41,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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