結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー LeonardoneLeonardone
提出日時 2016-09-08 19:18:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,057 ms / 3,000 ms
コード長 366 bytes
コンパイル時間 3,392 ms
コンパイル使用メモリ 74,520 KB
実行使用メモリ 69,208 KB
最終ジャッジ日時 2024-06-07 12:19:31
合計ジャッジ時間 14,248 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,060 KB
testcase_01 AC 134 ms
53,992 KB
testcase_02 AC 134 ms
54,264 KB
testcase_03 AC 136 ms
54,140 KB
testcase_04 AC 135 ms
54,032 KB
testcase_05 AC 143 ms
54,084 KB
testcase_06 AC 202 ms
54,312 KB
testcase_07 AC 275 ms
58,236 KB
testcase_08 AC 549 ms
59,224 KB
testcase_09 AC 657 ms
59,396 KB
testcase_10 AC 990 ms
69,136 KB
testcase_11 AC 1,009 ms
69,068 KB
testcase_12 AC 1,021 ms
69,208 KB
testcase_13 AC 1,045 ms
68,968 KB
testcase_14 AC 1,046 ms
68,896 KB
testcase_15 AC 1,034 ms
69,024 KB
testcase_16 AC 1,057 ms
69,088 KB
testcase_17 AC 135 ms
53,808 KB
testcase_18 AC 134 ms
54,072 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