結果

問題 No.289 数字を全て足そう
ユーザー ちよちゃんちよちゃん
提出日時 2016-05-25 14:43:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 194 ms / 1,000 ms
コード長 596 bytes
コンパイル時間 3,609 ms
コンパイル使用メモリ 74,784 KB
実行使用メモリ 56,904 KB
最終ジャッジ日時 2024-10-08 01:01:35
合計ジャッジ時間 8,787 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,972 KB
testcase_01 AC 132 ms
53,904 KB
testcase_02 AC 131 ms
54,236 KB
testcase_03 AC 130 ms
54,104 KB
testcase_04 AC 130 ms
54,324 KB
testcase_05 AC 164 ms
54,100 KB
testcase_06 AC 158 ms
53,888 KB
testcase_07 AC 183 ms
56,720 KB
testcase_08 AC 178 ms
56,804 KB
testcase_09 AC 164 ms
54,540 KB
testcase_10 AC 168 ms
54,460 KB
testcase_11 AC 175 ms
56,676 KB
testcase_12 AC 182 ms
56,620 KB
testcase_13 AC 174 ms
56,740 KB
testcase_14 AC 185 ms
56,800 KB
testcase_15 AC 177 ms
56,832 KB
testcase_16 AC 169 ms
54,572 KB
testcase_17 AC 179 ms
56,500 KB
testcase_18 AC 181 ms
56,492 KB
testcase_19 AC 173 ms
56,604 KB
testcase_20 AC 182 ms
56,780 KB
testcase_21 AC 132 ms
53,736 KB
testcase_22 AC 183 ms
56,904 KB
testcase_23 AC 194 ms
56,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

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

public class Yuki289 {
	
	public static void main( String[] args ) {
	
		Scanner scan = new Scanner(System.in);
		String str = scan.next();
		scan.close();
		String[] strarr = str.split("");
		String strNumber = "[1-9]";
		Pattern p = Pattern.compile(strNumber);
		int number = 0;
		
		for (int i = 0; i < strarr.length; i++ ){
			Matcher m = p.matcher(strarr[i]);

			if(m.find()){
				number += Integer.parseInt(strarr[i].toLowerCase());
			}
		}
	    System.out.print(number);	
	}
}
0