結果

問題 No.289 数字を全て足そう
ユーザー yagi2yagi2
提出日時 2017-04-14 01:14:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 167 ms / 1,000 ms
コード長 392 bytes
コンパイル時間 2,160 ms
コンパイル使用メモリ 74,636 KB
実行使用メモリ 54,696 KB
最終ジャッジ日時 2024-07-18 13:01:42
合計ジャッジ時間 5,821 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
53,468 KB
testcase_01 AC 105 ms
54,036 KB
testcase_02 AC 94 ms
52,552 KB
testcase_03 AC 102 ms
53,732 KB
testcase_04 AC 98 ms
52,744 KB
testcase_05 AC 128 ms
53,988 KB
testcase_06 AC 123 ms
53,784 KB
testcase_07 AC 139 ms
54,244 KB
testcase_08 AC 151 ms
53,956 KB
testcase_09 AC 147 ms
53,984 KB
testcase_10 AC 151 ms
54,492 KB
testcase_11 AC 148 ms
54,696 KB
testcase_12 AC 167 ms
54,360 KB
testcase_13 AC 140 ms
54,236 KB
testcase_14 AC 149 ms
54,236 KB
testcase_15 AC 134 ms
54,260 KB
testcase_16 AC 131 ms
54,088 KB
testcase_17 AC 138 ms
54,632 KB
testcase_18 AC 156 ms
54,484 KB
testcase_19 AC 137 ms
54,396 KB
testcase_20 AC 141 ms
54,500 KB
testcase_21 AC 106 ms
54,144 KB
testcase_22 AC 142 ms
54,668 KB
testcase_23 AC 146 ms
54,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        String[] sp = sc.next().split("");

        int ans = 0;
        for (String s : sp) {
            if (Character.isDigit(s.charAt(0))) {
                ans += Integer.parseInt(s);
            }
        }
        System.out.println(ans);
    }
}
0