結果

問題 No.289 数字を全て足そう
ユーザー crazybbb3crazybbb3
提出日時 2017-01-31 21:40:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 64 ms / 1,000 ms
コード長 1,249 bytes
コンパイル時間 1,917 ms
コンパイル使用メモリ 77,024 KB
実行使用メモリ 37,128 KB
最終ジャッジ日時 2024-06-06 10:39:47
合計ジャッジ時間 4,173 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,596 KB
testcase_01 AC 50 ms
36,648 KB
testcase_02 AC 50 ms
36,668 KB
testcase_03 AC 48 ms
36,892 KB
testcase_04 AC 49 ms
36,520 KB
testcase_05 AC 51 ms
36,836 KB
testcase_06 AC 49 ms
36,460 KB
testcase_07 AC 60 ms
36,932 KB
testcase_08 AC 58 ms
37,040 KB
testcase_09 AC 55 ms
36,964 KB
testcase_10 AC 54 ms
37,020 KB
testcase_11 AC 57 ms
36,788 KB
testcase_12 AC 60 ms
36,668 KB
testcase_13 AC 56 ms
36,932 KB
testcase_14 AC 60 ms
36,876 KB
testcase_15 AC 55 ms
36,828 KB
testcase_16 AC 54 ms
36,788 KB
testcase_17 AC 59 ms
36,460 KB
testcase_18 AC 59 ms
37,128 KB
testcase_19 AC 57 ms
36,948 KB
testcase_20 AC 57 ms
36,680 KB
testcase_21 AC 52 ms
36,808 KB
testcase_22 AC 57 ms
36,832 KB
testcase_23 AC 64 ms
37,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.StringTokenizer;

public class Main {

    void solve() throws IOException {
        String s = ns();
        int ans = 0;
        for (int i = 0; i < s.length(); i++) {
            if (s.charAt(i) >= '0' && s.charAt(i) <= '9') ans += s.charAt(i) - '0';
        }
        out.println(ans);
    }

    String ns() throws IOException {
        while (!tok.hasMoreTokens()) {
            tok = new StringTokenizer(in.readLine(), " ");
        }
        return tok.nextToken();
    }

    int ni() throws IOException {
        return Integer.parseInt(ns());
    }

    long nl() throws IOException {
        return Long.parseLong(ns());
    }

    double nd() throws IOException {
        return Double.parseDouble(ns());
    }

    static BufferedReader in;
    static PrintWriter out;
    static StringTokenizer tok;

    public static void main(String[] args) throws IOException {
        in = new BufferedReader(new InputStreamReader(System.in));
        out = new PrintWriter(System.out);
        tok = new StringTokenizer("");
        Main main = new Main();
        main.solve();
        out.close();
    }
}
0