結果

問題 No.289 数字を全て足そう
ユーザー econo_coffeeecono_coffee
提出日時 2017-03-28 22:40:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 379 bytes
コンパイル時間 3,042 ms
コンパイル使用メモリ 76,824 KB
実行使用メモリ 41,612 KB
最終ジャッジ日時 2024-07-06 13:31:34
合計ジャッジ時間 6,529 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
40,812 KB
testcase_01 AC 89 ms
40,104 KB
testcase_02 AC 98 ms
41,008 KB
testcase_03 AC 96 ms
40,916 KB
testcase_04 AC 97 ms
41,016 KB
testcase_05 AC 95 ms
40,248 KB
testcase_06 AC 99 ms
41,352 KB
testcase_07 AC 125 ms
41,556 KB
testcase_08 AC 125 ms
41,504 KB
testcase_09 AC 93 ms
39,912 KB
testcase_10 AC 109 ms
41,000 KB
testcase_11 AC 122 ms
41,392 KB
testcase_12 AC 127 ms
41,160 KB
testcase_13 AC 125 ms
41,324 KB
testcase_14 AC 116 ms
41,340 KB
testcase_15 AC 125 ms
41,168 KB
testcase_16 AC 122 ms
41,612 KB
testcase_17 AC 121 ms
41,128 KB
testcase_18 AC 117 ms
41,224 KB
testcase_19 AC 126 ms
41,040 KB
testcase_20 AC 122 ms
41,284 KB
testcase_21 AC 87 ms
40,028 KB
testcase_22 AC 127 ms
41,156 KB
testcase_23 AC 114 ms
41,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java .util.Scanner;
public class Yukicoder {

	public static void main(String[] args) {

		Scanner sc = new Scanner(System.in);
		String s = sc.next();

		char[] array = s.toCharArray();
		int sum = 0;
		for (int i = 0; i < s.length(); i++) {
			if (array[i] >= '0' && array[i] <= '9') {
				sum += Integer.parseInt("" + array[i]);
			}
		}
		System.out.print(sum);

	}

}
0