結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー Maeda
提出日時 2025-09-05 15:42:53
言語 Java
(openjdk 23)
結果
RE  
実行時間 -
コード長 280 bytes
コンパイル時間 3,971 ms
コンパイル使用メモリ 85,468 KB
実行使用メモリ 61,900 KB
最終ジャッジ日時 2025-09-05 15:43:08
合計ジャッジ時間 12,387 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3 RE * 1
other AC * 9 RE * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        int sum = 0;
        int x = scan.nextInt();
		for(int i = 0 ; i < x ; i++){
			sum += scan.nextInt();
		}
		System.out.print(sum);
    }
}
0