結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー nogisunnogisun
提出日時 2020-03-19 10:15:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 938 ms / 3,000 ms
コード長 388 bytes
コンパイル時間 3,479 ms
コンパイル使用メモリ 75,188 KB
実行使用メモリ 61,816 KB
最終ジャッジ日時 2024-05-08 03:08:10
合計ジャッジ時間 12,608 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,500 KB
testcase_01 AC 107 ms
41,340 KB
testcase_02 AC 125 ms
41,544 KB
testcase_03 AC 119 ms
41,240 KB
testcase_04 AC 127 ms
41,656 KB
testcase_05 AC 140 ms
41,652 KB
testcase_06 AC 184 ms
42,732 KB
testcase_07 AC 264 ms
47,040 KB
testcase_08 AC 521 ms
48,616 KB
testcase_09 AC 608 ms
49,260 KB
testcase_10 AC 867 ms
61,080 KB
testcase_11 AC 863 ms
61,016 KB
testcase_12 AC 878 ms
60,916 KB
testcase_13 AC 928 ms
61,084 KB
testcase_14 AC 790 ms
61,372 KB
testcase_15 AC 860 ms
61,172 KB
testcase_16 AC 938 ms
61,816 KB
testcase_17 AC 119 ms
41,448 KB
testcase_18 AC 118 ms
41,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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