結果

問題 No.289 数字を全て足そう
ユーザー gomagoma
提出日時 2017-09-19 21:31:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 166 ms / 1,000 ms
コード長 420 bytes
コンパイル時間 2,508 ms
コンパイル使用メモリ 74,688 KB
実行使用メモリ 41,596 KB
最終ジャッジ日時 2024-11-08 05:46:01
合計ジャッジ時間 7,224 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,128 KB
testcase_01 AC 130 ms
41,340 KB
testcase_02 AC 126 ms
41,196 KB
testcase_03 AC 127 ms
41,096 KB
testcase_04 AC 127 ms
41,008 KB
testcase_05 AC 134 ms
41,140 KB
testcase_06 AC 134 ms
41,128 KB
testcase_07 AC 132 ms
40,428 KB
testcase_08 AC 165 ms
41,444 KB
testcase_09 AC 132 ms
41,300 KB
testcase_10 AC 143 ms
41,216 KB
testcase_11 AC 144 ms
41,500 KB
testcase_12 AC 166 ms
41,392 KB
testcase_13 AC 145 ms
41,424 KB
testcase_14 AC 144 ms
41,272 KB
testcase_15 AC 150 ms
41,244 KB
testcase_16 AC 132 ms
40,448 KB
testcase_17 AC 144 ms
41,372 KB
testcase_18 AC 148 ms
41,320 KB
testcase_19 AC 144 ms
41,096 KB
testcase_20 AC 154 ms
41,284 KB
testcase_21 AC 128 ms
40,976 KB
testcase_22 AC 146 ms
41,240 KB
testcase_23 AC 163 ms
41,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String str = sc.next();
		char[] array = str.toCharArray();
		int ans = 0;
		for (int i = 0; i < str.length(); i++) {
			if (array[i] >= '0' && array[i] <= '9') {
				ans += Integer.parseInt(String.valueOf(str.charAt(i)));
			} else {
				continue;
			}
		}
		System.out.println(ans);

	}
}
0