結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー Hoboteru4484Hoboteru4484
提出日時 2019-11-30 22:28:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,012 ms / 3,000 ms
コード長 313 bytes
コンパイル時間 3,245 ms
コンパイル使用メモリ 74,004 KB
実行使用メモリ 69,264 KB
最終ジャッジ日時 2024-11-21 03:39:38
合計ジャッジ時間 13,858 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,104 KB
testcase_01 AC 127 ms
54,052 KB
testcase_02 AC 115 ms
52,728 KB
testcase_03 AC 113 ms
52,964 KB
testcase_04 AC 128 ms
54,344 KB
testcase_05 AC 140 ms
54,120 KB
testcase_06 AC 190 ms
54,376 KB
testcase_07 AC 275 ms
58,288 KB
testcase_08 AC 565 ms
59,452 KB
testcase_09 AC 652 ms
59,304 KB
testcase_10 AC 892 ms
69,180 KB
testcase_11 AC 1,012 ms
69,084 KB
testcase_12 AC 948 ms
69,264 KB
testcase_13 AC 974 ms
69,112 KB
testcase_14 AC 972 ms
69,256 KB
testcase_15 AC 996 ms
69,128 KB
testcase_16 AC 974 ms
68,872 KB
testcase_17 AC 126 ms
53,772 KB
testcase_18 AC 127 ms
54,248 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