結果

問題 No.289 数字を全て足そう
ユーザー kaoetayakaoetaya
提出日時 2016-11-28 13:30:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 1,000 ms
コード長 357 bytes
コンパイル時間 3,559 ms
コンパイル使用メモリ 74,572 KB
実行使用メモリ 41,992 KB
最終ジャッジ日時 2024-05-05 14:33:29
合計ジャッジ時間 7,451 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,224 KB
testcase_01 AC 111 ms
41,184 KB
testcase_02 AC 112 ms
41,008 KB
testcase_03 AC 112 ms
40,912 KB
testcase_04 AC 111 ms
41,416 KB
testcase_05 AC 122 ms
41,416 KB
testcase_06 AC 120 ms
40,996 KB
testcase_07 AC 133 ms
41,524 KB
testcase_08 AC 127 ms
41,108 KB
testcase_09 AC 122 ms
41,060 KB
testcase_10 AC 123 ms
40,168 KB
testcase_11 AC 134 ms
41,208 KB
testcase_12 AC 132 ms
41,236 KB
testcase_13 AC 130 ms
41,236 KB
testcase_14 AC 136 ms
41,244 KB
testcase_15 AC 133 ms
41,336 KB
testcase_16 AC 127 ms
40,660 KB
testcase_17 AC 120 ms
40,532 KB
testcase_18 AC 143 ms
41,464 KB
testcase_19 AC 113 ms
40,564 KB
testcase_20 AC 135 ms
41,188 KB
testcase_21 AC 101 ms
40,596 KB
testcase_22 AC 138 ms
41,332 KB
testcase_23 AC 150 ms
41,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class pre {
    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
		String str = s.next();
		int sum = 0;
		for(int i=0;i<str.length();i++){
			if(str.charAt(i) >= '0' && str.charAt(i) <= '9')
				sum += Integer.parseInt(String.valueOf(str.charAt(i)));
		}
		
		System.out.println(sum);
    }
}
0