結果

問題 No.289 数字を全て足そう
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-12 20:09:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 192 ms / 1,000 ms
コード長 557 bytes
コンパイル時間 2,119 ms
コンパイル使用メモリ 74,464 KB
実行使用メモリ 46,820 KB
最終ジャッジ日時 2024-05-04 11:04:34
合計ジャッジ時間 6,160 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
41,052 KB
testcase_01 AC 99 ms
41,464 KB
testcase_02 AC 115 ms
40,268 KB
testcase_03 AC 95 ms
41,396 KB
testcase_04 AC 103 ms
41,148 KB
testcase_05 AC 138 ms
43,556 KB
testcase_06 AC 139 ms
42,700 KB
testcase_07 AC 167 ms
45,516 KB
testcase_08 AC 164 ms
46,184 KB
testcase_09 AC 144 ms
43,272 KB
testcase_10 AC 159 ms
44,396 KB
testcase_11 AC 163 ms
46,700 KB
testcase_12 AC 192 ms
46,820 KB
testcase_13 AC 170 ms
45,724 KB
testcase_14 AC 188 ms
46,688 KB
testcase_15 AC 172 ms
46,012 KB
testcase_16 AC 165 ms
45,908 KB
testcase_17 AC 159 ms
46,404 KB
testcase_18 AC 182 ms
46,556 KB
testcase_19 AC 161 ms
45,984 KB
testcase_20 AC 150 ms
46,156 KB
testcase_21 AC 110 ms
41,552 KB
testcase_22 AC 170 ms
46,392 KB
testcase_23 AC 145 ms
42,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String S = sc.next();
        String [] arr = S.split("");
        int sum = 0;
        for(int i=0; i<arr.length; i++){
            int temp = parseint(arr[i],0);
            sum += temp;
        }
        System.out.println(sum);
    }
    static int parseint(String a, int b){
        try{
            return Integer.parseInt(a);
        } catch ( NumberFormatException e ) {
            return b;
        }
    }
}
0