結果

問題 No.289 数字を全て足そう
ユーザー l1267976l1267976
提出日時 2017-03-07 22:21:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 155 ms / 1,000 ms
コード長 448 bytes
コンパイル時間 4,006 ms
コンパイル使用メモリ 74,780 KB
実行使用メモリ 41,984 KB
最終ジャッジ日時 2024-06-23 18:00:18
合計ジャッジ時間 7,622 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,368 KB
testcase_01 AC 126 ms
41,504 KB
testcase_02 AC 125 ms
41,412 KB
testcase_03 AC 128 ms
41,408 KB
testcase_04 AC 113 ms
40,352 KB
testcase_05 AC 134 ms
41,404 KB
testcase_06 AC 133 ms
41,136 KB
testcase_07 AC 129 ms
40,244 KB
testcase_08 AC 144 ms
41,452 KB
testcase_09 AC 130 ms
41,504 KB
testcase_10 AC 146 ms
41,336 KB
testcase_11 AC 146 ms
41,616 KB
testcase_12 AC 142 ms
41,572 KB
testcase_13 AC 148 ms
41,588 KB
testcase_14 AC 123 ms
40,032 KB
testcase_15 AC 142 ms
41,536 KB
testcase_16 AC 148 ms
41,152 KB
testcase_17 AC 152 ms
41,612 KB
testcase_18 AC 144 ms
41,504 KB
testcase_19 AC 128 ms
40,296 KB
testcase_20 AC 151 ms
41,628 KB
testcase_21 AC 128 ms
41,516 KB
testcase_22 AC 144 ms
41,696 KB
testcase_23 AC 155 ms
41,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No289 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String s = sc.next();

        int sum = 0;
        for (int i = 0; i < s.length(); i++) {
            char c = s.charAt(i);

            if (Character.isDigit(c)) {
                sum += Character.digit(c, 10);
            }
        }

        System.out.println(sum);

        sc.close();
    }

}
0