結果

問題 No.289 数字を全て足そう
ユーザー hippolover02hippolover02
提出日時 2022-08-29 17:11:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 163 ms / 1,000 ms
コード長 431 bytes
コンパイル時間 3,048 ms
コンパイル使用メモリ 74,384 KB
実行使用メモリ 42,792 KB
最終ジャッジ日時 2024-11-06 14:15:43
合計ジャッジ時間 6,374 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,532 KB
testcase_01 AC 111 ms
40,064 KB
testcase_02 AC 125 ms
41,436 KB
testcase_03 AC 126 ms
41,308 KB
testcase_04 AC 123 ms
41,372 KB
testcase_05 AC 140 ms
41,172 KB
testcase_06 AC 129 ms
41,468 KB
testcase_07 AC 146 ms
41,436 KB
testcase_08 AC 144 ms
41,488 KB
testcase_09 AC 117 ms
40,216 KB
testcase_10 AC 127 ms
40,692 KB
testcase_11 AC 142 ms
41,344 KB
testcase_12 AC 163 ms
41,528 KB
testcase_13 AC 140 ms
41,356 KB
testcase_14 AC 163 ms
41,580 KB
testcase_15 AC 157 ms
41,264 KB
testcase_16 AC 138 ms
41,320 KB
testcase_17 AC 148 ms
41,516 KB
testcase_18 AC 160 ms
41,192 KB
testcase_19 AC 139 ms
41,584 KB
testcase_20 AC 145 ms
41,116 KB
testcase_21 AC 129 ms
42,792 KB
testcase_22 AC 161 ms
41,372 KB
testcase_23 AC 163 ms
41,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        String line = sc.nextLine();
        int total = 0;
        for (int i = 0; i<line.length(); i++){
            char c = line.charAt(i);
            if(48 <= c && c <= 57){
                total += Character.getNumericValue(c);
            }
        }
        System.out.println(total);
    }
}
0