結果

問題 No.289 数字を全て足そう
ユーザー d07ki3bq1uzd07ki3bq1uz
提出日時 2019-09-28 01:24:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 1,000 ms
コード長 385 bytes
コンパイル時間 2,380 ms
コンパイル使用メモリ 74,276 KB
実行使用メモリ 54,392 KB
最終ジャッジ日時 2024-09-25 04:36:21
合計ジャッジ時間 6,167 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
53,960 KB
testcase_01 AC 121 ms
54,020 KB
testcase_02 AC 123 ms
54,044 KB
testcase_03 AC 107 ms
53,016 KB
testcase_04 AC 120 ms
53,840 KB
testcase_05 AC 128 ms
54,084 KB
testcase_06 AC 125 ms
53,836 KB
testcase_07 AC 135 ms
54,200 KB
testcase_08 AC 140 ms
54,264 KB
testcase_09 AC 125 ms
54,164 KB
testcase_10 AC 122 ms
52,988 KB
testcase_11 AC 127 ms
52,808 KB
testcase_12 AC 140 ms
54,228 KB
testcase_13 AC 143 ms
54,064 KB
testcase_14 AC 122 ms
52,988 KB
testcase_15 AC 134 ms
53,936 KB
testcase_16 AC 123 ms
52,892 KB
testcase_17 AC 135 ms
54,028 KB
testcase_18 AC 141 ms
54,052 KB
testcase_19 AC 136 ms
54,392 KB
testcase_20 AC 136 ms
54,152 KB
testcase_21 AC 123 ms
54,244 KB
testcase_22 AC 143 ms
54,068 KB
testcase_23 AC 140 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
    public static void main (String[] args) {
        Scanner sc = new Scanner(System.in);
        String s = sc.next();
        int ans = 0;
        
     for(int i =0 ; i < s.length(); i++){
         char c = s.charAt(i);
         if(c>='0' && c <= '9'){
             ans += c -48;
         }
     }
     System.out.println(ans);
    }
}
0