結果

問題 No.289 数字を全て足そう
ユーザー yuuki121yuuki121
提出日時 2021-01-02 23:36:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 151 ms / 1,000 ms
コード長 496 bytes
コンパイル時間 2,227 ms
コンパイル使用メモリ 73,448 KB
実行使用メモリ 44,476 KB
最終ジャッジ日時 2024-10-12 14:20:51
合計ジャッジ時間 5,950 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
36,952 KB
testcase_01 AC 56 ms
37,068 KB
testcase_02 AC 55 ms
37,180 KB
testcase_03 AC 54 ms
37,360 KB
testcase_04 AC 55 ms
37,128 KB
testcase_05 AC 111 ms
41,960 KB
testcase_06 AC 95 ms
40,620 KB
testcase_07 AC 130 ms
43,964 KB
testcase_08 AC 139 ms
44,244 KB
testcase_09 AC 95 ms
41,112 KB
testcase_10 AC 110 ms
42,600 KB
testcase_11 AC 134 ms
44,024 KB
testcase_12 AC 141 ms
44,088 KB
testcase_13 AC 122 ms
44,016 KB
testcase_14 AC 140 ms
43,752 KB
testcase_15 AC 135 ms
44,116 KB
testcase_16 AC 128 ms
43,544 KB
testcase_17 AC 139 ms
43,748 KB
testcase_18 AC 143 ms
44,252 KB
testcase_19 AC 126 ms
43,972 KB
testcase_20 AC 137 ms
44,048 KB
testcase_21 AC 55 ms
36,904 KB
testcase_22 AC 143 ms
43,836 KB
testcase_23 AC 151 ms
44,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {

	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

		String str = br.readLine();
		int sum = 0;

		for (int i = 0; i < str.length(); i++) {
			String target = String.valueOf(str.charAt(i));
			sum += target.matches("[0-9]") ? Integer.parseInt(target) : 0;
		}

		System.out.println(sum);

	}

}
0