結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー LeonardoneLeonardone
提出日時 2016-09-27 17:43:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 383 ms / 2,000 ms
コード長 519 bytes
コンパイル時間 3,761 ms
コンパイル使用メモリ 74,920 KB
実行使用メモリ 86,508 KB
最終ジャッジ日時 2024-11-21 07:18:29
合計ジャッジ時間 7,720 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,280 KB
testcase_01 AC 55 ms
49,932 KB
testcase_02 AC 55 ms
50,204 KB
testcase_03 AC 54 ms
50,228 KB
testcase_04 AC 55 ms
50,320 KB
testcase_05 AC 55 ms
50,120 KB
testcase_06 AC 78 ms
51,156 KB
testcase_07 AC 120 ms
52,184 KB
testcase_08 AC 201 ms
56,016 KB
testcase_09 AC 211 ms
60,232 KB
testcase_10 AC 319 ms
77,208 KB
testcase_11 AC 306 ms
77,324 KB
testcase_12 AC 365 ms
84,240 KB
testcase_13 AC 360 ms
84,576 KB
testcase_14 AC 371 ms
85,272 KB
testcase_15 AC 383 ms
85,812 KB
testcase_16 AC 382 ms
86,508 KB
testcase_17 AC 54 ms
50,396 KB
testcase_18 AC 55 ms
49,980 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());
        String[] lines = in.readLine().split(" ");
        long sum = 0L;
        
        for (int i = 0; i < n; i++)
        {
            sum += Long.parseLong(lines[i]);
        }
        
        System.out.println(sum);
    }
}
0