結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー Hoboteru4484Hoboteru4484
提出日時 2019-11-30 22:26:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,105 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 3,784 ms
コンパイル使用メモリ 74,316 KB
実行使用メモリ 69,296 KB
最終ジャッジ日時 2024-05-01 03:19:01
合計ジャッジ時間 15,093 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
53,988 KB
testcase_01 AC 143 ms
53,984 KB
testcase_02 AC 145 ms
54,192 KB
testcase_03 AC 144 ms
54,260 KB
testcase_04 AC 145 ms
53,808 KB
testcase_05 AC 157 ms
54,300 KB
testcase_06 AC 216 ms
54,452 KB
testcase_07 AC 321 ms
58,340 KB
testcase_08 AC 615 ms
59,448 KB
testcase_09 AC 639 ms
59,292 KB
testcase_10 AC 1,025 ms
69,296 KB
testcase_11 AC 1,016 ms
68,848 KB
testcase_12 AC 1,038 ms
69,040 KB
testcase_13 AC 1,053 ms
69,064 KB
testcase_14 AC 1,035 ms
69,156 KB
testcase_15 AC 1,068 ms
69,220 KB
testcase_16 AC 1,105 ms
68,984 KB
testcase_17 AC 145 ms
54,392 KB
testcase_18 AC 144 ms
53,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Answer {
  public static void main(String[] args){
    Scanner sc = new Scanner(System.in);
    int dataCount = sc.nextInt();
    long sum = 0;

    for(int i = 0;i < dataCount;i++){
      sum += sc.nextLong();
    }
    
    sc.close();
    System.out.println(sum);
  }
}
0