結果

問題 No.289 数字を全て足そう
ユーザー rf141rf141
提出日時 2015-12-03 19:20:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 250 ms / 1,000 ms
コード長 827 bytes
コンパイル時間 6,587 ms
コンパイル使用メモリ 75,440 KB
実行使用メモリ 48,168 KB
最終ジャッジ日時 2024-10-08 00:31:53
合計ジャッジ時間 9,649 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,672 KB
testcase_01 AC 126 ms
41,312 KB
testcase_02 AC 134 ms
41,404 KB
testcase_03 AC 112 ms
40,040 KB
testcase_04 AC 133 ms
41,172 KB
testcase_05 AC 203 ms
45,072 KB
testcase_06 AC 188 ms
44,276 KB
testcase_07 AC 233 ms
46,816 KB
testcase_08 AC 224 ms
46,468 KB
testcase_09 AC 195 ms
44,624 KB
testcase_10 AC 207 ms
46,256 KB
testcase_11 AC 220 ms
46,344 KB
testcase_12 AC 245 ms
47,296 KB
testcase_13 AC 215 ms
46,340 KB
testcase_14 AC 246 ms
47,232 KB
testcase_15 AC 221 ms
46,280 KB
testcase_16 AC 215 ms
45,928 KB
testcase_17 AC 250 ms
46,920 KB
testcase_18 AC 245 ms
47,040 KB
testcase_19 AC 220 ms
46,192 KB
testcase_20 AC 217 ms
46,576 KB
testcase_21 AC 127 ms
41,572 KB
testcase_22 AC 229 ms
46,872 KB
testcase_23 AC 247 ms
48,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class AllNumber{
	public static void main(String... args){
		Scanner scan = new Scanner(System.in);
		String target = scan.next();
		String[] number = target.split("");
		
		for(int i = 0; i < number.length; i++){
			if(isNumber(number[i])){
				continue;
			}else{
				number[i] = "not";
			}
		}
		System.out.println(allPlus(number));

	}

	public static boolean isNumber(String str){
		String regex = "[0-9]";
		Pattern p = Pattern.compile(regex);
		Matcher m = p.matcher(str);
		return (m.find())?true:false;
	}

	public static int allPlus(String[] numberList){
		
		int result = 0;

		for(String str : numberList){
			if(str.equals("not")){
				continue;
			}
			result += Integer.parseInt(str);

		}

		return result;

	}
}
0