結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー papipenpapipen
提出日時 2017-03-19 22:01:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 972 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 1,969 ms
コンパイル使用メモリ 74,036 KB
実行使用メモリ 61,928 KB
最終ジャッジ日時 2024-07-04 23:40:06
合計ジャッジ時間 12,151 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,416 KB
testcase_01 AC 126 ms
41,532 KB
testcase_02 AC 114 ms
40,300 KB
testcase_03 AC 126 ms
41,436 KB
testcase_04 AC 124 ms
41,404 KB
testcase_05 AC 132 ms
41,464 KB
testcase_06 AC 185 ms
42,892 KB
testcase_07 AC 275 ms
47,240 KB
testcase_08 AC 551 ms
48,684 KB
testcase_09 AC 620 ms
49,168 KB
testcase_10 AC 827 ms
61,144 KB
testcase_11 AC 901 ms
60,916 KB
testcase_12 AC 864 ms
61,332 KB
testcase_13 AC 865 ms
61,276 KB
testcase_14 AC 900 ms
61,424 KB
testcase_15 AC 935 ms
61,344 KB
testcase_16 AC 972 ms
61,928 KB
testcase_17 AC 122 ms
41,552 KB
testcase_18 AC 126 ms
41,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class tasi{
  public static void main(String args[]){
    Scanner sc = new Scanner(System.in);
    int a = sc.nextInt();
    
    long b[] = new long[a];
    long sum = 0;
    
    for(int i = 0; i < a; i++){
      b[i] = sc.nextLong();
      sum += b[i]; 
    }
  	System.out.println(sum);
  }
}
0