結果

問題 No.289 数字を全て足そう
ユーザー ryosuke0825ryosuke0825
提出日時 2018-04-07 21:45:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 207 ms / 1,000 ms
コード長 348 bytes
コンパイル時間 5,239 ms
コンパイル使用メモリ 75,248 KB
実行使用メモリ 57,756 KB
最終ジャッジ日時 2024-06-26 11:07:49
合計ジャッジ時間 9,378 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
53,744 KB
testcase_01 AC 122 ms
54,132 KB
testcase_02 AC 125 ms
53,956 KB
testcase_03 AC 123 ms
54,292 KB
testcase_04 AC 125 ms
54,120 KB
testcase_05 AC 167 ms
56,868 KB
testcase_06 AC 155 ms
54,500 KB
testcase_07 AC 175 ms
57,540 KB
testcase_08 AC 191 ms
57,440 KB
testcase_09 AC 163 ms
56,964 KB
testcase_10 AC 170 ms
56,804 KB
testcase_11 AC 189 ms
57,400 KB
testcase_12 AC 203 ms
57,180 KB
testcase_13 AC 180 ms
57,100 KB
testcase_14 AC 207 ms
57,756 KB
testcase_15 AC 183 ms
57,340 KB
testcase_16 AC 185 ms
57,056 KB
testcase_17 AC 187 ms
57,348 KB
testcase_18 AC 201 ms
57,284 KB
testcase_19 AC 192 ms
57,260 KB
testcase_20 AC 196 ms
57,136 KB
testcase_21 AC 126 ms
54,420 KB
testcase_22 AC 197 ms
57,216 KB
testcase_23 AC 170 ms
54,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No289 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String S = sc.next();
		String[] arr = S.split("");

		int sum = -1;
		for(String s:arr) {
			try {
				sum += Integer.parseInt(s);
			} catch(NumberFormatException e) {

			}
		}

		System.out.println(sum+1);
	}

}
0