結果

問題 No.289 数字を全て足そう
ユーザー kuramukuramu
提出日時 2016-01-19 17:24:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 89 ms / 1,000 ms
コード長 543 bytes
コンパイル時間 2,336 ms
コンパイル使用メモリ 75,392 KB
実行使用メモリ 51,412 KB
最終ジャッジ日時 2024-10-08 00:41:14
合計ジャッジ時間 5,117 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
50,056 KB
testcase_01 AC 65 ms
50,404 KB
testcase_02 AC 64 ms
50,380 KB
testcase_03 AC 60 ms
49,740 KB
testcase_04 AC 65 ms
50,436 KB
testcase_05 AC 65 ms
50,060 KB
testcase_06 AC 64 ms
50,540 KB
testcase_07 AC 74 ms
51,176 KB
testcase_08 AC 74 ms
51,012 KB
testcase_09 AC 65 ms
50,192 KB
testcase_10 AC 67 ms
50,320 KB
testcase_11 AC 72 ms
50,664 KB
testcase_12 AC 72 ms
51,072 KB
testcase_13 AC 70 ms
50,664 KB
testcase_14 AC 73 ms
50,588 KB
testcase_15 AC 74 ms
50,904 KB
testcase_16 AC 70 ms
50,496 KB
testcase_17 AC 72 ms
50,724 KB
testcase_18 AC 73 ms
50,840 KB
testcase_19 AC 77 ms
50,664 KB
testcase_20 AC 73 ms
50,824 KB
testcase_21 AC 63 ms
50,396 KB
testcase_22 AC 80 ms
50,488 KB
testcase_23 AC 89 ms
51,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.lang.Character;
public class Main {

	public static void main(String[] args) throws IOException {
		BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in));
		String line = stdReader.readLine();
		int ans = 0;
		for(int i=0;i<line.length();i++){
			if(line.charAt(i)>='0' && line.charAt(i) <= '9'){
				ans += Integer.parseInt(""+line.charAt(i));
			}
		}
		System.out.println(ans);
	}
}
0