結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー HaleakalaHaleakala
提出日時 2018-02-18 15:20:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 554 ms / 2,000 ms
コード長 449 bytes
コンパイル時間 3,636 ms
コンパイル使用メモリ 74,440 KB
実行使用メモリ 97,204 KB
最終ジャッジ日時 2024-06-24 12:45:46
合計ジャッジ時間 10,291 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,828 KB
testcase_01 AC 126 ms
54,140 KB
testcase_02 AC 124 ms
54,056 KB
testcase_03 AC 111 ms
52,696 KB
testcase_04 AC 128 ms
54,112 KB
testcase_05 AC 131 ms
54,092 KB
testcase_06 AC 177 ms
54,360 KB
testcase_07 AC 261 ms
56,724 KB
testcase_08 AC 387 ms
64,108 KB
testcase_09 AC 372 ms
64,572 KB
testcase_10 AC 531 ms
84,612 KB
testcase_11 AC 534 ms
87,008 KB
testcase_12 AC 529 ms
86,944 KB
testcase_13 AC 532 ms
87,044 KB
testcase_14 AC 539 ms
97,204 KB
testcase_15 AC 544 ms
97,196 KB
testcase_16 AC 554 ms
95,784 KB
testcase_17 AC 127 ms
54,104 KB
testcase_18 AC 127 ms
54,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No480 {
	public static void main(String str[]) {
        Scanner sc = new Scanner(System.in);

        String s1 = sc.nextLine();
        String s2 = sc.nextLine();

        String[] split = s2.split(" ");
        long sum = 0;
        for(int i=0; i<Integer.valueOf(s1); i++) {
        	sum += Long.valueOf(split[i]);
        }

        // 標準出力に書き出す。
        System.out.println(sum);
	}
}
0