結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー yonaka_gggyonaka_ggg
提出日時 2020-09-06 02:24:37
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,121 ms / 3,000 ms
コード長 302 bytes
コンパイル時間 2,436 ms
コンパイル使用メモリ 73,744 KB
実行使用メモリ 57,932 KB
最終ジャッジ日時 2024-11-29 06:28:29
合計ジャッジ時間 14,252 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,452 KB
testcase_01 AC 142 ms
41,576 KB
testcase_02 AC 137 ms
41,592 KB
testcase_03 AC 141 ms
41,488 KB
testcase_04 AC 142 ms
41,592 KB
testcase_05 AC 153 ms
41,304 KB
testcase_06 AC 207 ms
42,468 KB
testcase_07 AC 299 ms
46,620 KB
testcase_08 AC 558 ms
48,268 KB
testcase_09 AC 710 ms
47,800 KB
testcase_10 AC 1,042 ms
57,848 KB
testcase_11 AC 1,056 ms
57,316 KB
testcase_12 AC 1,038 ms
57,696 KB
testcase_13 AC 1,071 ms
57,704 KB
testcase_14 AC 1,096 ms
57,932 KB
testcase_15 AC 1,051 ms
57,200 KB
testcase_16 AC 1,121 ms
57,740 KB
testcase_17 AC 138 ms
41,472 KB
testcase_18 AC 142 ms
41,356 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