結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー LeonardoneLeonardone
提出日時 2016-09-27 17:40:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,062 ms / 2,000 ms
コード長 366 bytes
コンパイル時間 5,709 ms
コンパイル使用メモリ 73,956 KB
実行使用メモリ 69,436 KB
最終ジャッジ日時 2024-11-21 07:18:12
合計ジャッジ時間 13,979 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,804 KB
testcase_01 AC 132 ms
53,968 KB
testcase_02 AC 126 ms
53,936 KB
testcase_03 AC 131 ms
53,960 KB
testcase_04 AC 117 ms
53,124 KB
testcase_05 AC 143 ms
54,008 KB
testcase_06 AC 193 ms
54,396 KB
testcase_07 AC 283 ms
58,220 KB
testcase_08 AC 577 ms
59,552 KB
testcase_09 AC 659 ms
59,396 KB
testcase_10 AC 942 ms
68,956 KB
testcase_11 AC 1,001 ms
69,436 KB
testcase_12 AC 984 ms
69,156 KB
testcase_13 AC 997 ms
68,780 KB
testcase_14 AC 944 ms
69,192 KB
testcase_15 AC 1,062 ms
69,204 KB
testcase_16 AC 1,044 ms
69,120 KB
testcase_17 AC 137 ms
53,900 KB
testcase_18 AC 131 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.lang.*;
import java.util.*;

public class Solve
{
    public static void main(String[] args)
    {
        Scanner in = new Scanner(System.in);
        
        int n = in.nextInt();
        long sum = 0L;
        
        for (int i = 0; i < n; i++)
        {
            sum += in.nextLong();
        }
        
        System.out.println(sum);
    }
}
0