結果

問題 No.289 数字を全て足そう
ユーザー dazydazy
提出日時 2016-09-02 01:53:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 174 ms / 1,000 ms
コード長 621 bytes
コンパイル時間 3,427 ms
コンパイル使用メモリ 74,712 KB
実行使用メモリ 43,996 KB
最終ジャッジ日時 2024-11-15 17:27:41
合計ジャッジ時間 7,876 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,040 KB
testcase_01 AC 127 ms
41,272 KB
testcase_02 AC 128 ms
41,100 KB
testcase_03 AC 130 ms
41,280 KB
testcase_04 AC 126 ms
41,192 KB
testcase_05 AC 140 ms
41,696 KB
testcase_06 AC 153 ms
41,516 KB
testcase_07 AC 161 ms
42,996 KB
testcase_08 AC 169 ms
43,084 KB
testcase_09 AC 155 ms
41,956 KB
testcase_10 AC 163 ms
42,212 KB
testcase_11 AC 166 ms
42,808 KB
testcase_12 AC 172 ms
43,556 KB
testcase_13 AC 163 ms
42,820 KB
testcase_14 AC 172 ms
43,680 KB
testcase_15 AC 173 ms
42,884 KB
testcase_16 AC 163 ms
42,432 KB
testcase_17 AC 160 ms
43,100 KB
testcase_18 AC 174 ms
43,644 KB
testcase_19 AC 165 ms
42,864 KB
testcase_20 AC 168 ms
43,084 KB
testcase_21 AC 125 ms
41,292 KB
testcase_22 AC 169 ms
43,592 KB
testcase_23 AC 169 ms
43,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Yukicoder {
    static public void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        String S = scanner.next();
        if (S.isEmpty() || S.length() > 10000) System.exit(1);

        Pattern p = Pattern.compile("\\d");
        String tmp;
        int sum = 0;
        for (int i = 0; i < S.length(); i++) {
            tmp = S.substring(i, i+1);
            Matcher m = p.matcher(tmp);
            if (m.find()) sum += Integer.parseInt(tmp);
        }
        System.out.println(sum);
    }
}
0