結果

問題 No.289 数字を全て足そう
ユーザー kaoetayakaoetaya
提出日時 2016-11-28 13:30:52
言語 Java
(openjdk 23)
結果
AC  
実行時間 140 ms / 1,000 ms
コード長 357 bytes
コンパイル時間 2,842 ms
コンパイル使用メモリ 74,612 KB
実行使用メモリ 41,620 KB
最終ジャッジ日時 2024-11-27 12:36:35
合計ジャッジ時間 6,562 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,980 KB
testcase_01 AC 110 ms
41,020 KB
testcase_02 AC 108 ms
40,892 KB
testcase_03 AC 103 ms
41,044 KB
testcase_04 AC 104 ms
40,916 KB
testcase_05 AC 124 ms
40,928 KB
testcase_06 AC 110 ms
41,532 KB
testcase_07 AC 110 ms
40,452 KB
testcase_08 AC 109 ms
40,384 KB
testcase_09 AC 102 ms
39,968 KB
testcase_10 AC 114 ms
41,008 KB
testcase_11 AC 118 ms
40,152 KB
testcase_12 AC 139 ms
41,444 KB
testcase_13 AC 140 ms
40,912 KB
testcase_14 AC 135 ms
41,128 KB
testcase_15 AC 138 ms
41,400 KB
testcase_16 AC 123 ms
40,252 KB
testcase_17 AC 114 ms
40,312 KB
testcase_18 AC 113 ms
40,500 KB
testcase_19 AC 124 ms
40,512 KB
testcase_20 AC 127 ms
40,256 KB
testcase_21 AC 117 ms
41,084 KB
testcase_22 AC 134 ms
41,216 KB
testcase_23 AC 135 ms
41,620 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