結果

問題 No.289 数字を全て足そう
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-01-01 14:52:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 221 ms / 1,000 ms
コード長 545 bytes
コンパイル時間 2,350 ms
コンパイル使用メモリ 73,956 KB
実行使用メモリ 57,868 KB
最終ジャッジ日時 2024-10-08 00:38:21
合計ジャッジ時間 8,012 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
54,320 KB
testcase_01 AC 145 ms
54,364 KB
testcase_02 AC 155 ms
54,136 KB
testcase_03 AC 148 ms
54,368 KB
testcase_04 AC 144 ms
53,768 KB
testcase_05 AC 170 ms
56,328 KB
testcase_06 AC 158 ms
53,860 KB
testcase_07 AC 210 ms
57,648 KB
testcase_08 AC 209 ms
57,384 KB
testcase_09 AC 177 ms
56,124 KB
testcase_10 AC 175 ms
56,448 KB
testcase_11 AC 200 ms
57,024 KB
testcase_12 AC 218 ms
57,840 KB
testcase_13 AC 184 ms
57,000 KB
testcase_14 AC 221 ms
57,868 KB
testcase_15 AC 189 ms
56,688 KB
testcase_16 AC 168 ms
56,852 KB
testcase_17 AC 193 ms
57,056 KB
testcase_18 AC 203 ms
57,320 KB
testcase_19 AC 187 ms
57,176 KB
testcase_20 AC 190 ms
57,060 KB
testcase_21 AC 132 ms
53,940 KB
testcase_22 AC 198 ms
57,348 KB
testcase_23 AC 165 ms
53,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class NumAdd {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        String str = in.next();
        int c, ans;
        ans = 0;
        for(int i = 0; i < str.length(); i++) {
            try {
                char x = str.charAt(i);
                String y = Character.toString(x);
                c = Integer.parseInt(y);
            } catch(Exception e) {
                continue;
            }
            ans += c;
        }
        System.out.println(ans);
    }
}
0