結果

問題 No.289 数字を全て足そう
ユーザー samplelpmassamplelpmas
提出日時 2016-12-18 11:58:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 1,000 ms
コード長 458 bytes
コンパイル時間 2,174 ms
コンパイル使用メモリ 73,952 KB
実行使用メモリ 54,184 KB
最終ジャッジ日時 2024-05-08 06:28:48
合計ジャッジ時間 6,187 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
54,048 KB
testcase_01 AC 109 ms
52,908 KB
testcase_02 AC 111 ms
53,900 KB
testcase_03 AC 115 ms
53,884 KB
testcase_04 AC 100 ms
52,784 KB
testcase_05 AC 107 ms
52,824 KB
testcase_06 AC 123 ms
54,052 KB
testcase_07 AC 121 ms
52,800 KB
testcase_08 AC 133 ms
53,856 KB
testcase_09 AC 120 ms
53,996 KB
testcase_10 AC 120 ms
52,844 KB
testcase_11 AC 125 ms
53,744 KB
testcase_12 AC 142 ms
54,028 KB
testcase_13 AC 115 ms
53,108 KB
testcase_14 AC 133 ms
54,016 KB
testcase_15 AC 130 ms
53,944 KB
testcase_16 AC 123 ms
52,996 KB
testcase_17 AC 142 ms
54,184 KB
testcase_18 AC 117 ms
52,888 KB
testcase_19 AC 133 ms
54,172 KB
testcase_20 AC 117 ms
53,116 KB
testcase_21 AC 122 ms
54,064 KB
testcase_22 AC 117 ms
52,896 KB
testcase_23 AC 139 ms
54,040 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