結果

問題 No.289 数字を全て足そう
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-09-18 12:06:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 1,000 ms
コード長 754 bytes
コンパイル時間 2,047 ms
コンパイル使用メモリ 73,512 KB
実行使用メモリ 37,092 KB
最終ジャッジ日時 2024-11-08 02:27:33
合計ジャッジ時間 4,235 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,636 KB
testcase_01 AC 53 ms
36,724 KB
testcase_02 AC 53 ms
36,924 KB
testcase_03 AC 53 ms
36,904 KB
testcase_04 AC 54 ms
37,004 KB
testcase_05 AC 54 ms
36,820 KB
testcase_06 AC 55 ms
36,736 KB
testcase_07 AC 57 ms
36,792 KB
testcase_08 AC 57 ms
37,028 KB
testcase_09 AC 54 ms
37,084 KB
testcase_10 AC 56 ms
36,732 KB
testcase_11 AC 56 ms
36,788 KB
testcase_12 AC 58 ms
36,860 KB
testcase_13 AC 56 ms
37,080 KB
testcase_14 AC 56 ms
36,864 KB
testcase_15 AC 56 ms
36,984 KB
testcase_16 AC 54 ms
36,844 KB
testcase_17 AC 55 ms
36,852 KB
testcase_18 AC 56 ms
36,676 KB
testcase_19 AC 56 ms
36,528 KB
testcase_20 AC 55 ms
36,804 KB
testcase_21 AC 53 ms
37,016 KB
testcase_22 AC 56 ms
36,668 KB
testcase_23 AC 57 ms
37,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

class No289 {
	public static void main(String[] args) throws IOException{
		
     	BufferedReader br = new BufferedReader((new InputStreamReader(System.in)));
	    char[] chr= br.readLine().toCharArray();  //toCharArray()はString型からchar型の配列にできる
     	
	    int sum = 0;
	    for (int i = 0; i< chr.length; i++){
	    	
	    	/*Character.isDigit(chr)でchrが数値かチェック*/
	    	
     		if (Character.isDigit(chr[i])){
     			
     			/*CharacterクラスのgetNumericVakue(char)でchar型をint型に変換*/
     			
     			sum += Character.getNumericValue(chr[i]); 
     		}
     	}
	    
	    System.out.println(sum);
	}
}
0