結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,972 KB
testcase_01 AC 133 ms
54,264 KB
testcase_02 AC 133 ms
54,072 KB
testcase_03 AC 134 ms
54,060 KB
testcase_04 AC 136 ms
54,260 KB
testcase_05 AC 149 ms
54,308 KB
testcase_06 AC 203 ms
54,496 KB
testcase_07 AC 299 ms
58,372 KB
testcase_08 AC 551 ms
59,252 KB
testcase_09 AC 682 ms
59,744 KB
testcase_10 AC 992 ms
69,000 KB
testcase_11 AC 998 ms
69,232 KB
testcase_12 AC 1,013 ms
69,108 KB
testcase_13 AC 1,024 ms
69,060 KB
testcase_14 AC 1,072 ms
69,324 KB
testcase_15 AC 1,036 ms
69,312 KB
testcase_16 AC 1,111 ms
68,760 KB
testcase_17 AC 137 ms
54,252 KB
testcase_18 AC 135 ms
54,232 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