結果

問題 No.289 数字を全て足そう
ユーザー syusyu
提出日時 2020-08-26 10:39:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 245 ms / 1,000 ms
コード長 428 bytes
コンパイル時間 2,328 ms
コンパイル使用メモリ 74,580 KB
実行使用メモリ 47,700 KB
最終ジャッジ日時 2024-11-07 01:33:22
合計ジャッジ時間 8,275 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
40,912 KB
testcase_01 AC 127 ms
41,228 KB
testcase_02 AC 129 ms
41,164 KB
testcase_03 AC 128 ms
40,824 KB
testcase_04 AC 126 ms
40,932 KB
testcase_05 AC 185 ms
44,860 KB
testcase_06 AC 185 ms
43,716 KB
testcase_07 AC 231 ms
47,180 KB
testcase_08 AC 226 ms
46,308 KB
testcase_09 AC 194 ms
45,080 KB
testcase_10 AC 210 ms
46,476 KB
testcase_11 AC 205 ms
46,496 KB
testcase_12 AC 234 ms
47,084 KB
testcase_13 AC 221 ms
46,288 KB
testcase_14 AC 243 ms
47,252 KB
testcase_15 AC 218 ms
47,656 KB
testcase_16 AC 216 ms
46,468 KB
testcase_17 AC 215 ms
46,776 KB
testcase_18 AC 239 ms
46,940 KB
testcase_19 AC 228 ms
46,424 KB
testcase_20 AC 228 ms
47,136 KB
testcase_21 AC 130 ms
41,256 KB
testcase_22 AC 229 ms
47,152 KB
testcase_23 AC 245 ms
47,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        String checkStr=sc.next();
        String[] letters=checkStr.split("");
        int count=0;
        for(String letter:letters){
            if(!(letter.matches("[a-zA-Z]"))){
                count+=Integer.parseInt(letter);
            }
        }
        System.out.println(count);
    }
}
0