結果

問題 No.289 数字を全て足そう
ユーザー HaleakalaHaleakala
提出日時 2018-02-18 21:43:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 1,000 ms
コード長 407 bytes
コンパイル時間 3,780 ms
コンパイル使用メモリ 74,836 KB
実行使用メモリ 41,372 KB
最終ジャッジ日時 2024-07-04 15:28:22
合計ジャッジ時間 7,397 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,020 KB
testcase_01 AC 119 ms
41,144 KB
testcase_02 AC 105 ms
40,272 KB
testcase_03 AC 117 ms
41,344 KB
testcase_04 AC 113 ms
41,152 KB
testcase_05 AC 128 ms
40,340 KB
testcase_06 AC 121 ms
40,940 KB
testcase_07 AC 135 ms
41,372 KB
testcase_08 AC 134 ms
40,932 KB
testcase_09 AC 130 ms
41,168 KB
testcase_10 AC 139 ms
41,252 KB
testcase_11 AC 133 ms
41,184 KB
testcase_12 AC 140 ms
40,888 KB
testcase_13 AC 134 ms
41,072 KB
testcase_14 AC 150 ms
41,180 KB
testcase_15 AC 136 ms
41,236 KB
testcase_16 AC 134 ms
40,768 KB
testcase_17 AC 133 ms
41,068 KB
testcase_18 AC 137 ms
41,044 KB
testcase_19 AC 135 ms
41,224 KB
testcase_20 AC 134 ms
40,920 KB
testcase_21 AC 104 ms
40,320 KB
testcase_22 AC 147 ms
41,068 KB
testcase_23 AC 146 ms
40,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Answer {
	public static void main(String str[]) {
        Scanner sc = new Scanner(System.in);

        String s = sc.nextLine();
        int sum = 0;

        for(int i=0; i<s.length(); i++) {
        	char c = s.charAt(i);
        	if(Character.isDigit(c)) {
        		sum += Character.getNumericValue(c);
        	}
        }

        System.out.println(sum);
	}
}
0