結果

問題 No.289 数字を全て足そう
ユーザー kuramubonnkuramubonn
提出日時 2023-02-01 21:58:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 1,000 ms
コード長 410 bytes
コンパイル時間 2,057 ms
コンパイル使用メモリ 73,932 KB
実行使用メモリ 41,248 KB
最終ジャッジ日時 2024-07-01 15:04:36
合計ジャッジ時間 6,417 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
40,848 KB
testcase_01 AC 123 ms
40,900 KB
testcase_02 AC 127 ms
41,248 KB
testcase_03 AC 124 ms
40,908 KB
testcase_04 AC 124 ms
40,948 KB
testcase_05 AC 136 ms
41,192 KB
testcase_06 AC 130 ms
41,132 KB
testcase_07 AC 141 ms
40,912 KB
testcase_08 AC 145 ms
41,004 KB
testcase_09 AC 116 ms
40,208 KB
testcase_10 AC 139 ms
41,132 KB
testcase_11 AC 143 ms
41,024 KB
testcase_12 AC 141 ms
41,004 KB
testcase_13 AC 139 ms
41,132 KB
testcase_14 AC 141 ms
41,012 KB
testcase_15 AC 140 ms
40,948 KB
testcase_16 AC 145 ms
41,212 KB
testcase_17 AC 140 ms
40,992 KB
testcase_18 AC 128 ms
40,012 KB
testcase_19 AC 142 ms
40,916 KB
testcase_20 AC 140 ms
41,096 KB
testcase_21 AC 126 ms
41,036 KB
testcase_22 AC 143 ms
41,004 KB
testcase_23 AC 130 ms
40,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main{
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] Array = sc.next().toCharArray();
		int total = 0;
		for(char ch:Array) {
			if(ch == '1' || ch == '2' || ch == '3' || ch == '4' || ch == '5' || ch == '6' || ch == '7' || ch == '8' || ch == '9') {
				total += Character.getNumericValue(ch);
			}
		}
		System.out.println(total);
	}
}
0