結果
問題 | No.289 数字を全て足そう |
ユーザー | jimano |
提出日時 | 2018-01-06 17:34:24 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 136 ms / 1,000 ms |
コード長 | 868 bytes |
コンパイル時間 | 3,442 ms |
コンパイル使用メモリ | 74,636 KB |
実行使用メモリ | 41,880 KB |
最終ジャッジ日時 | 2024-12-23 08:40:58 |
合計ジャッジ時間 | 6,854 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 63 ms
36,736 KB |
testcase_01 | AC | 60 ms
37,416 KB |
testcase_02 | AC | 61 ms
36,892 KB |
testcase_03 | AC | 62 ms
37,296 KB |
testcase_04 | AC | 62 ms
37,228 KB |
testcase_05 | AC | 100 ms
38,928 KB |
testcase_06 | AC | 88 ms
38,196 KB |
testcase_07 | AC | 128 ms
40,940 KB |
testcase_08 | AC | 126 ms
41,260 KB |
testcase_09 | AC | 94 ms
38,868 KB |
testcase_10 | AC | 105 ms
39,588 KB |
testcase_11 | AC | 121 ms
40,404 KB |
testcase_12 | AC | 130 ms
41,340 KB |
testcase_13 | AC | 113 ms
40,672 KB |
testcase_14 | AC | 131 ms
41,596 KB |
testcase_15 | AC | 117 ms
40,572 KB |
testcase_16 | AC | 112 ms
40,444 KB |
testcase_17 | AC | 120 ms
40,556 KB |
testcase_18 | AC | 131 ms
41,512 KB |
testcase_19 | AC | 123 ms
40,612 KB |
testcase_20 | AC | 124 ms
40,680 KB |
testcase_21 | AC | 63 ms
37,208 KB |
testcase_22 | AC | 130 ms
41,352 KB |
testcase_23 | AC | 136 ms
41,880 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.regex.Matcher; import java.util.regex.Pattern; public class No0289 { public static void main(String[] args) throws NumberFormatException, IOException { try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) { String s = br.readLine().trim(); // regex number int sum = countByRegex(s); System.out.println(sum); } catch (IOException e) { e.printStackTrace(); } } static int countByRegex(String str) { int sum = 0; String[] strArray = str.split(""); String numRegex = "\\d"; Pattern p = Pattern.compile(numRegex); for (String s : strArray) { Matcher matcher = p.matcher(s); if (matcher.find()) { sum += Integer.parseInt(s); } else { sum += 0; } } return sum; } }