結果

問題 No.289 数字を全て足そう
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-20 12:05:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 195 ms / 1,000 ms
コード長 416 bytes
コンパイル時間 2,128 ms
コンパイル使用メモリ 74,288 KB
実行使用メモリ 46,656 KB
最終ジャッジ日時 2024-10-02 03:49:08
合計ジャッジ時間 7,272 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
40,964 KB
testcase_01 AC 120 ms
41,164 KB
testcase_02 AC 121 ms
41,164 KB
testcase_03 AC 120 ms
41,296 KB
testcase_04 AC 121 ms
40,964 KB
testcase_05 AC 141 ms
43,440 KB
testcase_06 AC 137 ms
42,288 KB
testcase_07 AC 189 ms
45,848 KB
testcase_08 AC 195 ms
45,748 KB
testcase_09 AC 139 ms
43,164 KB
testcase_10 AC 163 ms
43,604 KB
testcase_11 AC 170 ms
45,168 KB
testcase_12 AC 186 ms
46,076 KB
testcase_13 AC 164 ms
45,040 KB
testcase_14 AC 191 ms
45,860 KB
testcase_15 AC 158 ms
45,628 KB
testcase_16 AC 157 ms
45,200 KB
testcase_17 AC 186 ms
46,000 KB
testcase_18 AC 187 ms
46,372 KB
testcase_19 AC 157 ms
45,620 KB
testcase_20 AC 159 ms
46,656 KB
testcase_21 AC 122 ms
41,388 KB
testcase_22 AC 181 ms
46,272 KB
testcase_23 AC 142 ms
40,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    String s = sc.next();
    int ans = 0;
    for(int i = 0; i < s.length(); i++) {
      String d = String.valueOf(s.charAt(i));
      try {
        int num = Integer.parseInt(d);
        ans += num;
      } catch(NumberFormatException e) {
      }
    }
    System.out.println(ans);
  }
}
0