結果

問題 No.289 数字を全て足そう
ユーザー sasakkisasakki
提出日時 2016-03-28 12:28:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 187 ms / 1,000 ms
コード長 385 bytes
コンパイル時間 2,954 ms
コンパイル使用メモリ 77,132 KB
実行使用メモリ 54,384 KB
最終ジャッジ日時 2024-10-08 00:51:33
合計ジャッジ時間 8,046 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
53,932 KB
testcase_01 AC 135 ms
54,004 KB
testcase_02 AC 136 ms
53,912 KB
testcase_03 AC 139 ms
53,992 KB
testcase_04 AC 140 ms
53,860 KB
testcase_05 AC 152 ms
54,180 KB
testcase_06 AC 147 ms
54,036 KB
testcase_07 AC 178 ms
54,092 KB
testcase_08 AC 162 ms
54,140 KB
testcase_09 AC 151 ms
54,036 KB
testcase_10 AC 159 ms
54,228 KB
testcase_11 AC 160 ms
54,172 KB
testcase_12 AC 159 ms
53,944 KB
testcase_13 AC 159 ms
54,228 KB
testcase_14 AC 165 ms
54,100 KB
testcase_15 AC 162 ms
54,140 KB
testcase_16 AC 159 ms
54,192 KB
testcase_17 AC 159 ms
54,152 KB
testcase_18 AC 164 ms
53,944 KB
testcase_19 AC 163 ms
54,360 KB
testcase_20 AC 166 ms
54,384 KB
testcase_21 AC 140 ms
53,904 KB
testcase_22 AC 165 ms
54,068 KB
testcase_23 AC 187 ms
54,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.lang.Character;

class main{
    public static void main(String args[]){
	Scanner scan = new Scanner(System.in);
	
	int ans = 0;

	String str = scan.next();

	for(int i = 0; i < str.length(); i++){
	    char ch = str.charAt(i);
	   
	    if( Character.isDigit(ch) ){
		ans += Integer.parseInt("" +ch);
	    }
	}

	System.out.println(ans);

    }
}
0