結果

問題 No.289 数字を全て足そう
ユーザー samplelpmassamplelpmas
提出日時 2016-12-18 11:58:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 1,000 ms
コード長 458 bytes
コンパイル時間 2,163 ms
コンパイル使用メモリ 74,464 KB
実行使用メモリ 54,312 KB
最終ジャッジ日時 2024-12-14 08:09:43
合計ジャッジ時間 6,608 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,760 KB
testcase_01 AC 134 ms
53,856 KB
testcase_02 AC 134 ms
54,024 KB
testcase_03 AC 131 ms
54,092 KB
testcase_04 AC 132 ms
53,880 KB
testcase_05 AC 139 ms
54,312 KB
testcase_06 AC 138 ms
53,784 KB
testcase_07 AC 152 ms
53,912 KB
testcase_08 AC 150 ms
54,096 KB
testcase_09 AC 136 ms
54,184 KB
testcase_10 AC 146 ms
54,200 KB
testcase_11 AC 147 ms
54,000 KB
testcase_12 AC 148 ms
54,164 KB
testcase_13 AC 148 ms
54,264 KB
testcase_14 AC 151 ms
54,008 KB
testcase_15 AC 146 ms
53,916 KB
testcase_16 AC 147 ms
53,768 KB
testcase_17 AC 146 ms
54,040 KB
testcase_18 AC 149 ms
54,168 KB
testcase_19 AC 145 ms
54,040 KB
testcase_20 AC 132 ms
53,108 KB
testcase_21 AC 128 ms
54,064 KB
testcase_22 AC 147 ms
54,192 KB
testcase_23 AC 146 ms
53,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        char[] INPUT_STRING = sc.next().toCharArray();

        int sum = 0;

        for (int i = 0; i < INPUT_STRING.length; i++) {

            if ('0' <= INPUT_STRING[i] && INPUT_STRING[i] <= '9') {
                sum += INPUT_STRING[i] - '0';
            }

        }

        System.out.println(sum);

    }

}
0