結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー DrakkonDrakkon
提出日時 2018-02-05 13:56:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 522 ms / 2,000 ms
コード長 448 bytes
コンパイル時間 2,954 ms
コンパイル使用メモリ 75,320 KB
実行使用メモリ 85,232 KB
最終ジャッジ日時 2024-07-07 14:39:57
合計ジャッジ時間 10,110 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
40,124 KB
testcase_01 AC 111 ms
40,972 KB
testcase_02 AC 99 ms
40,072 KB
testcase_03 AC 111 ms
40,920 KB
testcase_04 AC 102 ms
40,192 KB
testcase_05 AC 126 ms
41,116 KB
testcase_06 AC 158 ms
41,560 KB
testcase_07 AC 236 ms
44,652 KB
testcase_08 AC 378 ms
54,448 KB
testcase_09 AC 376 ms
51,324 KB
testcase_10 AC 522 ms
70,640 KB
testcase_11 AC 510 ms
70,832 KB
testcase_12 AC 491 ms
71,260 KB
testcase_13 AC 507 ms
71,504 KB
testcase_14 AC 521 ms
72,220 KB
testcase_15 AC 484 ms
73,096 KB
testcase_16 AC 512 ms
85,232 KB
testcase_17 AC 102 ms
41,172 KB
testcase_18 AC 111 ms
41,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class no275{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        String n = sc.nextLine();
        long N = Long.parseLong(n);
        String input = sc.nextLine();
        String[] a = input.split("[ ]");
        long sum = 0;
        for(int i = 0; i < a.length; i++){
            sum += Long.parseLong(a[i]);
        }
        System.out.println(sum);
    }
}
0