結果

問題 No.289 数字を全て足そう
ユーザー GchansanjouGchansanjou
提出日時 2018-02-11 16:23:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 57 ms / 1,000 ms
コード長 647 bytes
コンパイル時間 3,208 ms
コンパイル使用メモリ 73,036 KB
実行使用メモリ 36,932 KB
最終ジャッジ日時 2024-11-17 04:29:34
合計ジャッジ時間 5,236 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
36,492 KB
testcase_01 AC 50 ms
36,412 KB
testcase_02 AC 49 ms
36,684 KB
testcase_03 AC 49 ms
36,664 KB
testcase_04 AC 49 ms
36,392 KB
testcase_05 AC 50 ms
36,336 KB
testcase_06 AC 50 ms
36,680 KB
testcase_07 AC 53 ms
36,840 KB
testcase_08 AC 53 ms
36,400 KB
testcase_09 AC 50 ms
36,680 KB
testcase_10 AC 50 ms
36,564 KB
testcase_11 AC 50 ms
36,328 KB
testcase_12 AC 52 ms
36,540 KB
testcase_13 AC 49 ms
36,584 KB
testcase_14 AC 53 ms
36,932 KB
testcase_15 AC 50 ms
36,912 KB
testcase_16 AC 51 ms
36,712 KB
testcase_17 AC 50 ms
36,704 KB
testcase_18 AC 52 ms
36,564 KB
testcase_19 AC 51 ms
36,772 KB
testcase_20 AC 51 ms
36,392 KB
testcase_21 AC 48 ms
36,704 KB
testcase_22 AC 51 ms
36,932 KB
testcase_23 AC 57 ms
36,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukiCoder;

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

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

		try {
			String input = bufferedReader.readLine();

			int ans = sum(input);

			System.out.println(ans);
		} catch (IOException e) {
			e.printStackTrace();
		}
	}

	static int sum(String input) {
		int ans = 0;
		for (int i = 0 ; i < input.length() ; i++) {
			if (Character.isDigit(input.charAt(i))) ans += Character.getNumericValue(input.charAt(i));
		}
		return ans;
	}
}
0