結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
48,960 KB
testcase_01 AC 104 ms
48,640 KB
testcase_02 AC 120 ms
50,016 KB
testcase_03 AC 116 ms
50,000 KB
testcase_04 AC 115 ms
50,032 KB
testcase_05 AC 151 ms
53,076 KB
testcase_06 AC 152 ms
52,092 KB
testcase_07 AC 197 ms
53,020 KB
testcase_08 AC 189 ms
52,680 KB
testcase_09 AC 152 ms
50,632 KB
testcase_10 AC 160 ms
51,808 KB
testcase_11 AC 175 ms
53,228 KB
testcase_12 AC 189 ms
53,272 KB
testcase_13 AC 171 ms
52,632 KB
testcase_14 AC 187 ms
53,288 KB
testcase_15 AC 182 ms
53,256 KB
testcase_16 AC 168 ms
52,944 KB
testcase_17 AC 168 ms
52,840 KB
testcase_18 AC 193 ms
52,908 KB
testcase_19 AC 174 ms
52,760 KB
testcase_20 AC 180 ms
53,744 KB
testcase_21 AC 118 ms
49,528 KB
testcase_22 AC 187 ms
53,272 KB
testcase_23 AC 156 ms
50,436 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