結果

問題 No.289 数字を全て足そう
ユーザー howakurohowakuro
提出日時 2015-11-06 07:38:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 192 ms / 1,000 ms
コード長 407 bytes
コンパイル時間 5,572 ms
コンパイル使用メモリ 74,884 KB
実行使用メモリ 47,196 KB
最終ジャッジ日時 2024-10-07 20:31:52
合計ジャッジ時間 7,773 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,160 KB
testcase_01 AC 110 ms
39,904 KB
testcase_02 AC 125 ms
41,036 KB
testcase_03 AC 113 ms
41,432 KB
testcase_04 AC 125 ms
40,912 KB
testcase_05 AC 149 ms
43,292 KB
testcase_06 AC 139 ms
42,516 KB
testcase_07 AC 166 ms
45,540 KB
testcase_08 AC 178 ms
45,272 KB
testcase_09 AC 134 ms
41,804 KB
testcase_10 AC 137 ms
43,600 KB
testcase_11 AC 158 ms
45,636 KB
testcase_12 AC 182 ms
47,196 KB
testcase_13 AC 165 ms
45,388 KB
testcase_14 AC 189 ms
46,532 KB
testcase_15 AC 171 ms
45,048 KB
testcase_16 AC 155 ms
45,116 KB
testcase_17 AC 189 ms
46,000 KB
testcase_18 AC 192 ms
46,932 KB
testcase_19 AC 178 ms
45,532 KB
testcase_20 AC 173 ms
46,564 KB
testcase_21 AC 117 ms
41,060 KB
testcase_22 AC 186 ms
47,156 KB
testcase_23 AC 149 ms
41,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class NumberAdd {

	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String S =  scan.next();
		int c = 0;
		int f;
		for(int i=0;i<S.length();i++){
			try{
				char x = S.charAt(i);
				String y = Character.toString(x);
				f = Integer.parseInt(y);
			}catch(Exception e){
			 continue;
			}
			c += f;
		}
		System.out.println(c);
	}

}
0