結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,344 KB
testcase_01 AC 123 ms
40,896 KB
testcase_02 AC 125 ms
41,452 KB
testcase_03 AC 126 ms
41,516 KB
testcase_04 AC 118 ms
40,012 KB
testcase_05 AC 137 ms
41,412 KB
testcase_06 AC 129 ms
41,148 KB
testcase_07 AC 142 ms
41,596 KB
testcase_08 AC 129 ms
40,264 KB
testcase_09 AC 130 ms
41,160 KB
testcase_10 AC 148 ms
41,080 KB
testcase_11 AC 152 ms
41,316 KB
testcase_12 AC 143 ms
41,448 KB
testcase_13 AC 139 ms
41,448 KB
testcase_14 AC 145 ms
41,400 KB
testcase_15 AC 136 ms
40,984 KB
testcase_16 AC 148 ms
41,628 KB
testcase_17 AC 132 ms
40,224 KB
testcase_18 AC 145 ms
41,276 KB
testcase_19 AC 143 ms
41,456 KB
testcase_20 AC 153 ms
41,488 KB
testcase_21 AC 129 ms
41,212 KB
testcase_22 AC 151 ms
41,368 KB
testcase_23 AC 143 ms
41,068 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)));
			}
		}
		System.out.println(ans);
	}
}
0