結果

問題 No.289 数字を全て足そう
ユーザー SaYaSaYa
提出日時 2015-11-08 20:17:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 178 ms / 1,000 ms
コード長 575 bytes
コンパイル時間 2,428 ms
コンパイル使用メモリ 74,276 KB
実行使用メモリ 44,080 KB
最終ジャッジ日時 2024-10-07 20:32:43
合計ジャッジ時間 7,034 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,128 KB
testcase_01 AC 131 ms
41,344 KB
testcase_02 AC 127 ms
41,300 KB
testcase_03 AC 125 ms
41,168 KB
testcase_04 AC 125 ms
41,180 KB
testcase_05 AC 154 ms
41,844 KB
testcase_06 AC 152 ms
41,796 KB
testcase_07 AC 165 ms
43,196 KB
testcase_08 AC 164 ms
43,064 KB
testcase_09 AC 147 ms
41,572 KB
testcase_10 AC 161 ms
42,460 KB
testcase_11 AC 171 ms
42,892 KB
testcase_12 AC 173 ms
43,816 KB
testcase_13 AC 156 ms
42,504 KB
testcase_14 AC 175 ms
43,620 KB
testcase_15 AC 168 ms
42,952 KB
testcase_16 AC 159 ms
42,088 KB
testcase_17 AC 157 ms
42,772 KB
testcase_18 AC 177 ms
43,536 KB
testcase_19 AC 170 ms
42,784 KB
testcase_20 AC 167 ms
42,996 KB
testcase_21 AC 131 ms
41,540 KB
testcase_22 AC 175 ms
43,720 KB
testcase_23 AC 178 ms
44,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.regex.Pattern;

public class Main {

    public static void main(String[] args) {
        int answer = 0;

        Scanner scanner = new Scanner(System.in);
        String s = scanner.next();

        Pattern pattern = Pattern.compile("^[0-9]+$");

        for (char c : s.toCharArray()) {
            String sOfC = String.valueOf(c);
            if (pattern.matcher(sOfC).matches()) {
                int i = Integer.parseInt(sOfC);
                answer += i;
            }
        }

        System.out.println(answer);
    }
}
0