結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー KahoMatsumotoKahoMatsumoto
提出日時 2017-05-23 18:57:45
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 285 bytes
コンパイル時間 2,866 ms
コンパイル使用メモリ 74,564 KB
実行使用メモリ 69,356 KB
最終ジャッジ日時 2024-09-19 11:45:50
合計ジャッジ時間 11,888 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
54,008 KB
testcase_01 AC 115 ms
53,476 KB
testcase_02 AC 119 ms
54,116 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 566 ms
59,320 KB
testcase_10 AC 858 ms
68,980 KB
testcase_11 AC 840 ms
69,328 KB
testcase_12 AC 847 ms
69,232 KB
testcase_13 AC 781 ms
69,112 KB
testcase_14 AC 841 ms
69,356 KB
testcase_15 AC 859 ms
68,984 KB
testcase_16 AC 891 ms
69,168 KB
testcase_17 AC 114 ms
53,920 KB
testcase_18 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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