結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー ldsybldsyb
提出日時 2017-04-13 12:18:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,023 ms / 3,000 ms
コード長 284 bytes
コンパイル時間 2,067 ms
コンパイル使用メモリ 74,980 KB
実行使用メモリ 58,000 KB
最終ジャッジ日時 2024-06-07 12:38:09
合計ジャッジ時間 12,948 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,280 KB
testcase_01 AC 129 ms
41,608 KB
testcase_02 AC 131 ms
41,072 KB
testcase_03 AC 131 ms
41,432 KB
testcase_04 AC 133 ms
41,084 KB
testcase_05 AC 143 ms
41,484 KB
testcase_06 AC 196 ms
42,476 KB
testcase_07 AC 292 ms
47,320 KB
testcase_08 AC 555 ms
48,204 KB
testcase_09 AC 670 ms
48,264 KB
testcase_10 AC 986 ms
58,000 KB
testcase_11 AC 940 ms
57,944 KB
testcase_12 AC 1,009 ms
57,860 KB
testcase_13 AC 963 ms
57,776 KB
testcase_14 AC 997 ms
57,600 KB
testcase_15 AC 1,023 ms
57,768 KB
testcase_16 AC 1,013 ms
57,708 KB
testcase_17 AC 120 ms
40,552 KB
testcase_18 AC 128 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 a = sc.nextInt();
        long ans = 0;
        for(int i = 0; i < a; i++) ans += sc.nextLong();
        System.out.println(ans);
    }
}
0