結果

問題 No.289 数字を全て足そう
ユーザー jonki324jonki324
提出日時 2018-06-03 16:29:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 1,000 ms
コード長 451 bytes
コンパイル時間 2,063 ms
コンパイル使用メモリ 74,256 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-06-30 09:24:36
合計ジャッジ時間 6,179 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
54,068 KB
testcase_01 AC 121 ms
54,048 KB
testcase_02 AC 122 ms
53,984 KB
testcase_03 AC 120 ms
53,960 KB
testcase_04 AC 122 ms
53,912 KB
testcase_05 AC 133 ms
54,064 KB
testcase_06 AC 115 ms
52,744 KB
testcase_07 AC 133 ms
54,084 KB
testcase_08 AC 140 ms
54,304 KB
testcase_09 AC 118 ms
52,936 KB
testcase_10 AC 141 ms
54,100 KB
testcase_11 AC 140 ms
54,204 KB
testcase_12 AC 139 ms
54,168 KB
testcase_13 AC 147 ms
53,968 KB
testcase_14 AC 145 ms
54,108 KB
testcase_15 AC 147 ms
54,188 KB
testcase_16 AC 148 ms
54,212 KB
testcase_17 AC 145 ms
54,008 KB
testcase_18 AC 140 ms
54,048 KB
testcase_19 AC 145 ms
54,136 KB
testcase_20 AC 146 ms
54,032 KB
testcase_21 AC 126 ms
54,040 KB
testcase_22 AC 143 ms
53,924 KB
testcase_23 AC 143 ms
53,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        String s = scan.next();
        char[] c = s.toCharArray();
        int sum = 0;
        for (int i = 0; i < c.length; i++) {
            if (Character.isDigit(c[i])) {
                sum += Character.getNumericValue(c[i]);
            }
        }
        System.out.println(sum);
        scan.close();
    }
}
0