結果
問題 | No.289 数字を全て足そう |
ユーザー | jimano |
提出日時 | 2018-01-06 17:34:24 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 119 ms / 1,000 ms |
コード長 | 868 bytes |
コンパイル時間 | 3,057 ms |
コンパイル使用メモリ | 74,284 KB |
実行使用メモリ | 42,156 KB |
最終ジャッジ日時 | 2024-06-02 11:30:27 |
合計ジャッジ時間 | 5,839 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
37,496 KB |
testcase_01 | AC | 52 ms
37,372 KB |
testcase_02 | AC | 52 ms
37,164 KB |
testcase_03 | AC | 53 ms
36,836 KB |
testcase_04 | AC | 53 ms
37,424 KB |
testcase_05 | AC | 80 ms
38,796 KB |
testcase_06 | AC | 73 ms
38,332 KB |
testcase_07 | AC | 109 ms
41,116 KB |
testcase_08 | AC | 109 ms
41,036 KB |
testcase_09 | AC | 78 ms
38,892 KB |
testcase_10 | AC | 88 ms
40,140 KB |
testcase_11 | AC | 101 ms
40,616 KB |
testcase_12 | AC | 109 ms
41,264 KB |
testcase_13 | AC | 97 ms
40,744 KB |
testcase_14 | AC | 99 ms
41,524 KB |
testcase_15 | AC | 101 ms
40,484 KB |
testcase_16 | AC | 100 ms
40,276 KB |
testcase_17 | AC | 106 ms
40,968 KB |
testcase_18 | AC | 119 ms
41,496 KB |
testcase_19 | AC | 104 ms
40,688 KB |
testcase_20 | AC | 102 ms
40,752 KB |
testcase_21 | AC | 51 ms
37,324 KB |
testcase_22 | AC | 112 ms
41,444 KB |
testcase_23 | AC | 114 ms
42,156 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; } }