結果

問題 No.289 数字を全て足そう
ユーザー S1hoS1ho
提出日時 2017-02-19 14:33:19
言語 Java
(openjdk 23)
結果
AC  
実行時間 165 ms / 1,000 ms
コード長 522 bytes
コンパイル時間 3,896 ms
コンパイル使用メモリ 74,196 KB
実行使用メモリ 41,432 KB
最終ジャッジ日時 2024-12-30 05:07:35
合計ジャッジ時間 8,386 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,212 KB
testcase_01 AC 134 ms
41,240 KB
testcase_02 AC 117 ms
39,776 KB
testcase_03 AC 122 ms
41,024 KB
testcase_04 AC 133 ms
41,152 KB
testcase_05 AC 142 ms
41,100 KB
testcase_06 AC 140 ms
41,028 KB
testcase_07 AC 158 ms
41,040 KB
testcase_08 AC 158 ms
41,088 KB
testcase_09 AC 142 ms
40,844 KB
testcase_10 AC 141 ms
40,792 KB
testcase_11 AC 160 ms
41,028 KB
testcase_12 AC 158 ms
41,200 KB
testcase_13 AC 165 ms
40,992 KB
testcase_14 AC 143 ms
40,248 KB
testcase_15 AC 163 ms
41,268 KB
testcase_16 AC 160 ms
41,196 KB
testcase_17 AC 158 ms
41,160 KB
testcase_18 AC 146 ms
40,992 KB
testcase_19 AC 156 ms
41,432 KB
testcase_20 AC 160 ms
41,320 KB
testcase_21 AC 122 ms
40,024 KB
testcase_22 AC 163 ms
41,432 KB
testcase_23 AC 163 ms
41,148 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