結果

問題 No.289 数字を全て足そう
ユーザー koukonkokoukonko
提出日時 2015-12-23 16:20:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 66 ms / 1,000 ms
コード長 527 bytes
コンパイル時間 2,055 ms
コンパイル使用メモリ 74,392 KB
実行使用メモリ 52,224 KB
最終ジャッジ日時 2024-10-08 00:34:59
合計ジャッジ時間 4,290 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,336 KB
testcase_01 AC 53 ms
50,268 KB
testcase_02 AC 56 ms
50,256 KB
testcase_03 AC 54 ms
50,140 KB
testcase_04 AC 54 ms
50,252 KB
testcase_05 AC 56 ms
50,272 KB
testcase_06 AC 56 ms
50,308 KB
testcase_07 AC 60 ms
50,300 KB
testcase_08 AC 58 ms
49,908 KB
testcase_09 AC 56 ms
50,224 KB
testcase_10 AC 58 ms
50,280 KB
testcase_11 AC 59 ms
50,120 KB
testcase_12 AC 62 ms
50,056 KB
testcase_13 AC 59 ms
50,280 KB
testcase_14 AC 63 ms
50,116 KB
testcase_15 AC 60 ms
49,788 KB
testcase_16 AC 58 ms
50,060 KB
testcase_17 AC 60 ms
50,272 KB
testcase_18 AC 61 ms
50,304 KB
testcase_19 AC 57 ms
52,224 KB
testcase_20 AC 58 ms
50,056 KB
testcase_21 AC 54 ms
49,788 KB
testcase_22 AC 61 ms
50,440 KB
testcase_23 AC 66 ms
50,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) {
		BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));

		try {
			int count = 0;

			String S = buff.readLine();
			for(int i = 0; i < S.length(); ++i){
				if(S.charAt(i) >= '0' && S.charAt(i) <= '9'){
					count += Character.getNumericValue(S.charAt(i));
				}
			}

			System.out.println(count);
		} catch (Exception e) {
			e.getStackTrace();
		}
	}
}
0