結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
46,512 KB
testcase_01 AC 126 ms
41,028 KB
testcase_02 AC 126 ms
40,996 KB
testcase_03 AC 128 ms
41,128 KB
testcase_04 AC 123 ms
40,096 KB
testcase_05 AC 142 ms
41,368 KB
testcase_06 AC 189 ms
42,336 KB
testcase_07 AC 291 ms
47,412 KB
testcase_08 AC 530 ms
47,688 KB
testcase_09 AC 616 ms
47,728 KB
testcase_10 AC 864 ms
57,420 KB
testcase_11 AC 835 ms
57,664 KB
testcase_12 AC 935 ms
57,576 KB
testcase_13 AC 839 ms
57,908 KB
testcase_14 AC 960 ms
57,804 KB
testcase_15 AC 932 ms
57,868 KB
testcase_16 AC 974 ms
57,716 KB
testcase_17 AC 114 ms
41,136 KB
testcase_18 AC 126 ms
40,964 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