結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー KahoMatsumotoKahoMatsumoto
提出日時 2017-05-23 19:09:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 938 ms / 2,000 ms
コード長 373 bytes
コンパイル時間 3,538 ms
コンパイル使用メモリ 74,476 KB
実行使用メモリ 61,580 KB
最終ジャッジ日時 2024-09-19 11:46:45
合計ジャッジ時間 12,645 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,164 KB
testcase_01 AC 129 ms
41,148 KB
testcase_02 AC 117 ms
40,112 KB
testcase_03 AC 126 ms
40,896 KB
testcase_04 AC 134 ms
41,284 KB
testcase_05 AC 138 ms
41,608 KB
testcase_06 AC 192 ms
42,308 KB
testcase_07 AC 285 ms
47,048 KB
testcase_08 AC 535 ms
48,516 KB
testcase_09 AC 556 ms
48,532 KB
testcase_10 AC 823 ms
60,384 KB
testcase_11 AC 873 ms
61,072 KB
testcase_12 AC 823 ms
61,144 KB
testcase_13 AC 894 ms
61,416 KB
testcase_14 AC 827 ms
61,136 KB
testcase_15 AC 781 ms
61,316 KB
testcase_16 AC 938 ms
61,580 KB
testcase_17 AC 112 ms
41,168 KB
testcase_18 AC 104 ms
40,252 KB
権限があれば一括ダウンロードができます

ソースコード

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[] l = new long[n];
    long sum = 0;
    for (int i = 0; i < n; i++) {
      l[i] = sc.nextLong();
    }
    for (int i = 0; i < n; i++) {
      sum += l[i];
    }
    System.out.println(sum);
  }
}
0