結果

問題 No.289 数字を全て足そう
ユーザー TatsuDXTatsuDX
提出日時 2016-09-03 15:23:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 1,000 ms
コード長 329 bytes
コンパイル時間 3,365 ms
コンパイル使用メモリ 74,412 KB
実行使用メモリ 41,592 KB
最終ジャッジ日時 2024-11-15 18:45:49
合計ジャッジ時間 7,313 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,464 KB
testcase_01 AC 119 ms
41,152 KB
testcase_02 AC 122 ms
41,168 KB
testcase_03 AC 107 ms
39,872 KB
testcase_04 AC 120 ms
41,016 KB
testcase_05 AC 130 ms
41,216 KB
testcase_06 AC 127 ms
41,360 KB
testcase_07 AC 137 ms
41,504 KB
testcase_08 AC 124 ms
40,280 KB
testcase_09 AC 128 ms
41,128 KB
testcase_10 AC 131 ms
41,292 KB
testcase_11 AC 133 ms
41,012 KB
testcase_12 AC 137 ms
41,372 KB
testcase_13 AC 134 ms
41,280 KB
testcase_14 AC 144 ms
41,408 KB
testcase_15 AC 135 ms
41,592 KB
testcase_16 AC 121 ms
40,092 KB
testcase_17 AC 145 ms
41,440 KB
testcase_18 AC 137 ms
41,208 KB
testcase_19 AC 139 ms
41,048 KB
testcase_20 AC 143 ms
41,180 KB
testcase_21 AC 117 ms
41,516 KB
testcase_22 AC 122 ms
40,504 KB
testcase_23 AC 137 ms
41,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		int sum = 0;
		for (int i = 0; i < s.length(); i++) {
			if (s.charAt(i) >= '0' && s.charAt(i) <= '9') {
				sum += s.charAt(i) - '0';
			}
		}
		System.out.println(sum);
	}
}
0