結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,892 KB
testcase_01 AC 55 ms
36,908 KB
testcase_02 AC 57 ms
36,596 KB
testcase_03 AC 54 ms
36,900 KB
testcase_04 AC 53 ms
36,688 KB
testcase_05 AC 58 ms
36,972 KB
testcase_06 AC 55 ms
37,008 KB
testcase_07 AC 60 ms
36,980 KB
testcase_08 AC 58 ms
36,424 KB
testcase_09 AC 57 ms
36,468 KB
testcase_10 AC 59 ms
36,688 KB
testcase_11 AC 57 ms
36,900 KB
testcase_12 AC 59 ms
37,164 KB
testcase_13 AC 56 ms
37,004 KB
testcase_14 AC 60 ms
36,416 KB
testcase_15 AC 60 ms
36,876 KB
testcase_16 AC 55 ms
36,832 KB
testcase_17 AC 55 ms
37,008 KB
testcase_18 AC 58 ms
36,940 KB
testcase_19 AC 55 ms
36,876 KB
testcase_20 AC 57 ms
36,600 KB
testcase_21 AC 54 ms
36,896 KB
testcase_22 AC 59 ms
36,872 KB
testcase_23 AC 63 ms
36,592 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