結果

問題 No.289 数字を全て足そう
ユーザー YOSHIYOSHI
提出日時 2021-03-09 19:00:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 74 ms / 1,000 ms
コード長 484 bytes
コンパイル時間 5,812 ms
コンパイル使用メモリ 73,480 KB
実行使用メモリ 37,864 KB
最終ジャッジ日時 2024-10-11 12:31:00
合計ジャッジ時間 6,394 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,452 KB
testcase_01 AC 55 ms
36,756 KB
testcase_02 AC 54 ms
36,484 KB
testcase_03 AC 53 ms
36,632 KB
testcase_04 AC 53 ms
36,484 KB
testcase_05 AC 58 ms
36,764 KB
testcase_06 AC 55 ms
36,468 KB
testcase_07 AC 58 ms
36,556 KB
testcase_08 AC 57 ms
36,436 KB
testcase_09 AC 55 ms
36,620 KB
testcase_10 AC 55 ms
36,816 KB
testcase_11 AC 56 ms
36,892 KB
testcase_12 AC 59 ms
36,748 KB
testcase_13 AC 57 ms
36,776 KB
testcase_14 AC 59 ms
36,568 KB
testcase_15 AC 57 ms
36,596 KB
testcase_16 AC 57 ms
36,824 KB
testcase_17 AC 57 ms
36,620 KB
testcase_18 AC 58 ms
36,864 KB
testcase_19 AC 58 ms
36,484 KB
testcase_20 AC 58 ms
36,752 KB
testcase_21 AC 54 ms
36,420 KB
testcase_22 AC 59 ms
36,876 KB
testcase_23 AC 74 ms
37,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No00000289_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++) {
			char c = str.charAt(i);
			if('0' <= c && c <= '9') sum +=Integer.parseInt(String.valueOf(c));
		}
		System.out.println(sum);
	}
}
0