結果

問題 No.289 数字を全て足そう
ユーザー spaciaspacia
提出日時 2015-12-29 16:45:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 151 ms / 1,000 ms
コード長 487 bytes
コンパイル時間 2,256 ms
コンパイル使用メモリ 75,584 KB
実行使用メモリ 55,824 KB
最終ジャッジ日時 2024-10-08 00:37:53
合計ジャッジ時間 5,885 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
50,488 KB
testcase_01 AC 59 ms
50,540 KB
testcase_02 AC 58 ms
50,504 KB
testcase_03 AC 59 ms
50,528 KB
testcase_04 AC 60 ms
50,600 KB
testcase_05 AC 110 ms
54,792 KB
testcase_06 AC 101 ms
52,304 KB
testcase_07 AC 141 ms
55,132 KB
testcase_08 AC 143 ms
55,824 KB
testcase_09 AC 112 ms
54,896 KB
testcase_10 AC 126 ms
55,040 KB
testcase_11 AC 141 ms
55,424 KB
testcase_12 AC 150 ms
55,568 KB
testcase_13 AC 127 ms
55,424 KB
testcase_14 AC 144 ms
55,716 KB
testcase_15 AC 140 ms
55,448 KB
testcase_16 AC 129 ms
55,260 KB
testcase_17 AC 137 ms
55,568 KB
testcase_18 AC 141 ms
55,492 KB
testcase_19 AC 136 ms
55,376 KB
testcase_20 AC 138 ms
55,360 KB
testcase_21 AC 60 ms
50,600 KB
testcase_22 AC 144 ms
55,564 KB
testcase_23 AC 151 ms
55,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main289 {
	
	public static void out (Object out) {
		System.out.println(out);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int ans = 0;
		String s = br.readLine();
		
		for (int i = 0; i < s.length(); i++) {
			if ((s.charAt(i) + "").matches("[0-9]")) {
				ans += s.charAt(i) - '0';
			}
		}
		
		out(ans);
		
	}
}
0