結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー LeonardoneLeonardone
提出日時 2016-09-08 19:25:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 204 ms / 3,000 ms
コード長 473 bytes
コンパイル時間 3,000 ms
コンパイル使用メモリ 73,920 KB
実行使用メモリ 43,788 KB
最終ジャッジ日時 2024-06-07 12:20:49
合計ジャッジ時間 6,023 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
37,076 KB
testcase_01 AC 46 ms
36,672 KB
testcase_02 AC 47 ms
37,228 KB
testcase_03 AC 48 ms
36,736 KB
testcase_04 AC 47 ms
36,800 KB
testcase_05 AC 49 ms
36,592 KB
testcase_06 AC 69 ms
37,216 KB
testcase_07 AC 104 ms
39,104 KB
testcase_08 AC 151 ms
42,256 KB
testcase_09 AC 165 ms
43,392 KB
testcase_10 AC 185 ms
43,788 KB
testcase_11 AC 191 ms
43,776 KB
testcase_12 AC 187 ms
43,736 KB
testcase_13 AC 195 ms
43,768 KB
testcase_14 AC 190 ms
43,704 KB
testcase_15 AC 192 ms
43,720 KB
testcase_16 AC 204 ms
43,704 KB
testcase_17 AC 48 ms
37,020 KB
testcase_18 AC 48 ms
36,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Solve
{
    public static void main(String[] args) throws Exception
    {
        BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
        
        int n = Integer.parseInt(in.readLine());
        long sum = 0L;
        
        for (int i = 0; i < n; i++)
        {
            sum += Long.parseLong(in.readLine());
        }
        
        System.out.println(sum);
    }
}
0