結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー KahoMatsumotoKahoMatsumoto
提出日時 2017-05-23 19:12:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 921 ms / 3,000 ms
コード長 373 bytes
コンパイル時間 3,641 ms
コンパイル使用メモリ 74,116 KB
実行使用メモリ 61,140 KB
最終ジャッジ日時 2024-06-07 12:41:21
合計ジャッジ時間 13,300 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
40,072 KB
testcase_01 AC 117 ms
41,056 KB
testcase_02 AC 121 ms
41,132 KB
testcase_03 AC 123 ms
41,288 KB
testcase_04 AC 125 ms
40,944 KB
testcase_05 AC 130 ms
41,368 KB
testcase_06 AC 184 ms
42,428 KB
testcase_07 AC 268 ms
46,844 KB
testcase_08 AC 512 ms
48,652 KB
testcase_09 AC 596 ms
49,000 KB
testcase_10 AC 859 ms
60,708 KB
testcase_11 AC 851 ms
60,896 KB
testcase_12 AC 797 ms
60,984 KB
testcase_13 AC 880 ms
61,140 KB
testcase_14 AC 875 ms
60,884 KB
testcase_15 AC 921 ms
60,992 KB
testcase_16 AC 887 ms
60,540 KB
testcase_17 AC 115 ms
40,868 KB
testcase_18 AC 119 ms
41,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No9009 {
  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