結果

問題 No.289 数字を全て足そう
ユーザー 🐧しゅんチャマ🌸🐧しゅんチャマ🌸
提出日時 2023-09-13 22:27:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 1,000 ms
コード長 368 bytes
コンパイル時間 2,009 ms
コンパイル使用メモリ 73,856 KB
実行使用メモリ 54,440 KB
最終ジャッジ日時 2024-07-01 06:41:50
合計ジャッジ時間 6,259 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,976 KB
testcase_01 AC 128 ms
53,888 KB
testcase_02 AC 128 ms
54,048 KB
testcase_03 AC 129 ms
54,180 KB
testcase_04 AC 130 ms
54,084 KB
testcase_05 AC 137 ms
54,112 KB
testcase_06 AC 133 ms
53,848 KB
testcase_07 AC 143 ms
54,072 KB
testcase_08 AC 143 ms
53,872 KB
testcase_09 AC 134 ms
53,824 KB
testcase_10 AC 142 ms
54,124 KB
testcase_11 AC 143 ms
54,440 KB
testcase_12 AC 145 ms
54,036 KB
testcase_13 AC 142 ms
54,228 KB
testcase_14 AC 145 ms
54,108 KB
testcase_15 AC 141 ms
53,916 KB
testcase_16 AC 149 ms
54,016 KB
testcase_17 AC 143 ms
54,064 KB
testcase_18 AC 143 ms
54,000 KB
testcase_19 AC 146 ms
54,124 KB
testcase_20 AC 143 ms
53,816 KB
testcase_21 AC 126 ms
53,844 KB
testcase_22 AC 149 ms
54,044 KB
testcase_23 AC 146 ms
53,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Y289{
    public static void main(String args[]){
        Scanner sc=new Scanner(System.in);
        String s=sc.next();
        int sum=0;
        for(int i=0;i<s.length();i++){
            char c=s.charAt(i);
            if(c>='1'&&c<='9'){
                sum+=c-'0';
            }
        }
        System.out.println(sum);
    }
}
0