結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
53,148 KB
testcase_01 AC 105 ms
53,028 KB
testcase_02 AC 104 ms
53,036 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 556 ms
59,416 KB
testcase_10 AC 783 ms
69,160 KB
testcase_11 AC 852 ms
68,932 KB
testcase_12 AC 837 ms
69,128 KB
testcase_13 AC 848 ms
69,184 KB
testcase_14 AC 860 ms
69,240 KB
testcase_15 AC 1,104 ms
69,224 KB
testcase_16 AC 853 ms
69,284 KB
testcase_17 AC 119 ms
53,976 KB
testcase_18 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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