結果

問題 No.289 数字を全て足そう
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-05-02 22:12:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 1,000 ms
コード長 652 bytes
コンパイル時間 2,049 ms
コンパイル使用メモリ 74,036 KB
実行使用メモリ 37,028 KB
最終ジャッジ日時 2024-09-14 04:47:55
合計ジャッジ時間 4,294 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,848 KB
testcase_01 AC 51 ms
36,860 KB
testcase_02 AC 51 ms
36,848 KB
testcase_03 AC 52 ms
36,828 KB
testcase_04 AC 53 ms
36,800 KB
testcase_05 AC 52 ms
36,456 KB
testcase_06 AC 52 ms
36,664 KB
testcase_07 AC 56 ms
36,724 KB
testcase_08 AC 56 ms
36,852 KB
testcase_09 AC 52 ms
36,848 KB
testcase_10 AC 54 ms
36,848 KB
testcase_11 AC 55 ms
36,508 KB
testcase_12 AC 57 ms
36,608 KB
testcase_13 AC 53 ms
36,512 KB
testcase_14 AC 55 ms
36,780 KB
testcase_15 AC 55 ms
36,840 KB
testcase_16 AC 53 ms
36,888 KB
testcase_17 AC 54 ms
36,764 KB
testcase_18 AC 56 ms
36,984 KB
testcase_19 AC 56 ms
36,852 KB
testcase_20 AC 56 ms
36,956 KB
testcase_21 AC 53 ms
36,828 KB
testcase_22 AC 56 ms
36,808 KB
testcase_23 AC 58 ms
37,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

import static java.lang.System.in;


public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        String S = reader.readLine();
        int sum = 0;
        for (int i = 0; i < S.length(); i++) {
            char possibleDigit = S.charAt(i);
            if(Character.isDigit(possibleDigit)) {
                sum += Character.getNumericValue(possibleDigit);
            }
        }
        System.out.println(sum);
    }
}
0