結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー yonaka_gggyonaka_ggg
提出日時 2020-09-06 02:23:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 844 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 1,909 ms
コンパイル使用メモリ 73,612 KB
実行使用メモリ 57,844 KB
最終ジャッジ日時 2024-05-06 20:31:39
合計ジャッジ時間 11,292 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
39,560 KB
testcase_01 AC 104 ms
39,872 KB
testcase_02 AC 108 ms
41,048 KB
testcase_03 AC 96 ms
39,724 KB
testcase_04 AC 101 ms
41,092 KB
testcase_05 AC 123 ms
41,180 KB
testcase_06 AC 164 ms
42,440 KB
testcase_07 AC 264 ms
47,264 KB
testcase_08 AC 447 ms
47,748 KB
testcase_09 AC 438 ms
46,908 KB
testcase_10 AC 747 ms
57,796 KB
testcase_11 AC 702 ms
57,628 KB
testcase_12 AC 793 ms
57,744 KB
testcase_13 AC 768 ms
57,844 KB
testcase_14 AC 734 ms
57,788 KB
testcase_15 AC 777 ms
57,672 KB
testcase_16 AC 844 ms
57,696 KB
testcase_17 AC 109 ms
40,916 KB
testcase_18 AC 106 ms
41,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        long ans = 0;
        for(int i = 0; i < n; i++)
            ans += sc.nextLong();

        System.out.println(ans);
    }

}
0