結果

問題 No.289 数字を全て足そう
ユーザー S1hoS1ho
提出日時 2017-02-19 14:33:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 1,000 ms
コード長 522 bytes
コンパイル時間 3,424 ms
コンパイル使用メモリ 74,452 KB
実行使用メモリ 54,300 KB
最終ジャッジ日時 2024-06-09 14:21:58
合計ジャッジ時間 7,534 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,996 KB
testcase_01 AC 121 ms
53,852 KB
testcase_02 AC 125 ms
53,992 KB
testcase_03 AC 122 ms
53,996 KB
testcase_04 AC 123 ms
54,024 KB
testcase_05 AC 133 ms
54,260 KB
testcase_06 AC 131 ms
53,956 KB
testcase_07 AC 146 ms
54,108 KB
testcase_08 AC 143 ms
53,748 KB
testcase_09 AC 129 ms
53,980 KB
testcase_10 AC 141 ms
54,300 KB
testcase_11 AC 137 ms
53,584 KB
testcase_12 AC 138 ms
53,880 KB
testcase_13 AC 146 ms
54,016 KB
testcase_14 AC 137 ms
53,848 KB
testcase_15 AC 146 ms
54,192 KB
testcase_16 AC 142 ms
53,996 KB
testcase_17 AC 145 ms
53,804 KB
testcase_18 AC 144 ms
54,052 KB
testcase_19 AC 146 ms
53,740 KB
testcase_20 AC 135 ms
54,008 KB
testcase_21 AC 123 ms
54,112 KB
testcase_22 AC 144 ms
54,160 KB
testcase_23 AC 150 ms
54,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class AddAllNum {

    public static void main(String[] args) {
        
        Scanner scanner = new Scanner(System.in);
        
        String s = scanner.next();
        
        int sum = 0;
        
        char c;
        
        for(int i=0;i<s.length();i++){
            
            c = s.charAt(i);
            
            if(Character.isDigit(c)){
                sum += Character.digit(c,10);
            } 
        }
        
        System.out.println(sum);
    }
    
}
0