結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー yonaka_gggyonaka_ggg
提出日時 2020-09-06 02:24:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 852 ms / 3,000 ms
コード長 302 bytes
コンパイル時間 2,658 ms
コンパイル使用メモリ 74,136 KB
実行使用メモリ 58,016 KB
最終ジャッジ日時 2024-05-06 20:31:55
合計ジャッジ時間 11,668 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
40,144 KB
testcase_01 AC 108 ms
41,008 KB
testcase_02 AC 114 ms
41,204 KB
testcase_03 AC 112 ms
41,184 KB
testcase_04 AC 112 ms
41,024 KB
testcase_05 AC 122 ms
40,980 KB
testcase_06 AC 165 ms
42,112 KB
testcase_07 AC 253 ms
47,232 KB
testcase_08 AC 517 ms
47,904 KB
testcase_09 AC 579 ms
48,680 KB
testcase_10 AC 808 ms
57,580 KB
testcase_11 AC 852 ms
57,472 KB
testcase_12 AC 824 ms
57,684 KB
testcase_13 AC 847 ms
57,552 KB
testcase_14 AC 850 ms
57,700 KB
testcase_15 AC 783 ms
58,016 KB
testcase_16 AC 812 ms
57,560 KB
testcase_17 AC 109 ms
40,236 KB
testcase_18 AC 117 ms
41,176 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