結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー papipenpapipen
提出日時 2017-03-23 20:53:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 903 ms / 3,000 ms
コード長 318 bytes
コンパイル時間 1,835 ms
コンパイル使用メモリ 73,884 KB
実行使用メモリ 61,344 KB
最終ジャッジ日時 2024-06-07 12:33:57
合計ジャッジ時間 11,340 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,068 KB
testcase_01 AC 119 ms
41,584 KB
testcase_02 AC 116 ms
41,328 KB
testcase_03 AC 119 ms
41,420 KB
testcase_04 AC 118 ms
41,220 KB
testcase_05 AC 129 ms
41,656 KB
testcase_06 AC 173 ms
42,768 KB
testcase_07 AC 260 ms
47,244 KB
testcase_08 AC 518 ms
48,500 KB
testcase_09 AC 650 ms
49,572 KB
testcase_10 AC 872 ms
60,988 KB
testcase_11 AC 854 ms
61,088 KB
testcase_12 AC 850 ms
60,720 KB
testcase_13 AC 895 ms
61,260 KB
testcase_14 AC 843 ms
61,196 KB
testcase_15 AC 889 ms
61,332 KB
testcase_16 AC 903 ms
61,344 KB
testcase_17 AC 106 ms
39,996 KB
testcase_18 AC 116 ms
41,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class test{
  public static void main(String args[]){
    Scanner scan = new Scanner(System.in);
    int a = scan.nextInt();
    long b[] = new long[a];
    long sum = 0;

    for(int i = 0; i < a; i++){
      b[i] = scan.nextLong();
      sum += b[i];
    }
  System.out.println(sum);
  }
}
0