結果

問題 No.289 数字を全て足そう
ユーザー springspring
提出日時 2019-06-12 14:15:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 171 ms / 1,000 ms
コード長 569 bytes
コンパイル時間 2,042 ms
コンパイル使用メモリ 75,016 KB
実行使用メモリ 43,352 KB
最終ジャッジ日時 2024-10-10 07:00:12
合計ジャッジ時間 6,790 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,264 KB
testcase_01 AC 112 ms
41,368 KB
testcase_02 AC 124 ms
41,172 KB
testcase_03 AC 128 ms
41,180 KB
testcase_04 AC 129 ms
40,912 KB
testcase_05 AC 160 ms
42,160 KB
testcase_06 AC 140 ms
41,844 KB
testcase_07 AC 171 ms
42,152 KB
testcase_08 AC 161 ms
42,428 KB
testcase_09 AC 155 ms
41,716 KB
testcase_10 AC 162 ms
42,096 KB
testcase_11 AC 169 ms
42,012 KB
testcase_12 AC 164 ms
42,504 KB
testcase_13 AC 161 ms
42,400 KB
testcase_14 AC 167 ms
42,484 KB
testcase_15 AC 165 ms
42,280 KB
testcase_16 AC 156 ms
42,192 KB
testcase_17 AC 160 ms
42,932 KB
testcase_18 AC 163 ms
43,352 KB
testcase_19 AC 157 ms
42,440 KB
testcase_20 AC 165 ms
43,240 KB
testcase_21 AC 124 ms
40,788 KB
testcase_22 AC 167 ms
42,184 KB
testcase_23 AC 158 ms
41,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String input = sc.next();
		sc.close();
		String regex = "[^0-9]";
		Pattern p = Pattern.compile(regex);

		Matcher m = p.matcher(input);
		String inputA = m.replaceAll("");
		char[] charStr = inputA.toCharArray();
		int result = 0;
		for(char charNum : charStr){
			result += Character.getNumericValue(charNum);
		}
		System.out.println(result);

	}// mainmethod

} // class
0