結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー SilverBullet _RyeSilverBullet _Rye
提出日時 2023-12-02 13:32:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 979 ms / 3,000 ms
コード長 278 bytes
コンパイル時間 3,478 ms
コンパイル使用メモリ 73,844 KB
実行使用メモリ 69,164 KB
最終ジャッジ日時 2024-09-26 16:29:47
合計ジャッジ時間 13,924 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,792 KB
testcase_01 AC 112 ms
52,940 KB
testcase_02 AC 126 ms
53,572 KB
testcase_03 AC 122 ms
53,504 KB
testcase_04 AC 131 ms
53,996 KB
testcase_05 AC 144 ms
53,888 KB
testcase_06 AC 186 ms
54,096 KB
testcase_07 AC 277 ms
58,332 KB
testcase_08 AC 521 ms
59,064 KB
testcase_09 AC 589 ms
59,368 KB
testcase_10 AC 931 ms
69,152 KB
testcase_11 AC 939 ms
68,840 KB
testcase_12 AC 947 ms
68,956 KB
testcase_13 AC 919 ms
68,824 KB
testcase_14 AC 869 ms
69,060 KB
testcase_15 AC 979 ms
69,164 KB
testcase_16 AC 954 ms
68,876 KB
testcase_17 AC 125 ms
53,720 KB
testcase_18 AC 126 ms
53,784 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 res = 0;
        for(int i=0;i<n;i++)res+=sc.nextLong();
        System.out.println(res);
    }
}
0