結果

問題 No.289 数字を全て足そう
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-05-11 04:23:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 245 ms / 1,000 ms
コード長 577 bytes
コンパイル時間 3,605 ms
コンパイル使用メモリ 74,864 KB
実行使用メモリ 57,944 KB
最終ジャッジ日時 2024-06-28 03:34:19
合計ジャッジ時間 9,323 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,100 KB
testcase_01 AC 133 ms
53,764 KB
testcase_02 AC 134 ms
53,872 KB
testcase_03 AC 132 ms
53,644 KB
testcase_04 AC 136 ms
53,828 KB
testcase_05 AC 198 ms
57,300 KB
testcase_06 AC 184 ms
57,316 KB
testcase_07 AC 232 ms
57,656 KB
testcase_08 AC 227 ms
57,700 KB
testcase_09 AC 194 ms
57,428 KB
testcase_10 AC 207 ms
57,840 KB
testcase_11 AC 224 ms
57,820 KB
testcase_12 AC 245 ms
57,944 KB
testcase_13 AC 218 ms
57,876 KB
testcase_14 AC 227 ms
57,624 KB
testcase_15 AC 225 ms
57,920 KB
testcase_16 AC 204 ms
57,768 KB
testcase_17 AC 227 ms
57,684 KB
testcase_18 AC 234 ms
57,764 KB
testcase_19 AC 214 ms
57,636 KB
testcase_20 AC 211 ms
57,692 KB
testcase_21 AC 128 ms
54,076 KB
testcase_22 AC 227 ms
57,908 KB
testcase_23 AC 245 ms
57,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class SumNum{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        String numstr = sc.next();
        String[] ns = numstr.split("");

        int sum_ = 0;
        for(int i=0; i<ns.length; i++){
            Pattern p = Pattern.compile("^[0-9]+$");
            Matcher m = p.matcher(ns[i]);
            if(m.find()){
                sum_ += Integer.parseInt(ns[i]);
            }
        }
        System.out.println(sum_);
    }
}


0