結果
問題 | No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用) |
ユーザー | Haleakala |
提出日時 | 2018-02-18 15:14:57 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 451 bytes |
コンパイル時間 | 3,265 ms |
コンパイル使用メモリ | 74,588 KB |
実行使用メモリ | 96,908 KB |
最終ジャッジ日時 | 2024-06-24 12:45:34 |
合計ジャッジ時間 | 10,032 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 113 ms
52,968 KB |
testcase_01 | AC | 126 ms
54,432 KB |
testcase_02 | AC | 125 ms
54,068 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | AC | 355 ms
64,144 KB |
testcase_10 | AC | 525 ms
84,848 KB |
testcase_11 | AC | 523 ms
84,756 KB |
testcase_12 | AC | 503 ms
86,732 KB |
testcase_13 | AC | 521 ms
87,076 KB |
testcase_14 | AC | 501 ms
85,964 KB |
testcase_15 | AC | 530 ms
96,908 KB |
testcase_16 | AC | 543 ms
95,860 KB |
testcase_17 | AC | 126 ms
54,036 KB |
testcase_18 | RE | - |
ソースコード
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(" "); int sum = 0; for(int i=0; i<Integer.valueOf(s1); i++) { sum += Integer.valueOf(split[i]); } // 標準出力に書き出す。 System.out.println(sum); } }