結果

問題 No.289 数字を全て足そう
ユーザー chiyodachiyoda
提出日時 2016-06-23 18:15:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 189 ms / 1,000 ms
コード長 380 bytes
コンパイル時間 2,586 ms
コンパイル使用メモリ 74,288 KB
実行使用メモリ 45,560 KB
最終ジャッジ日時 2024-10-11 18:40:02
合計ジャッジ時間 7,458 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,160 KB
testcase_01 AC 118 ms
41,052 KB
testcase_02 AC 119 ms
41,216 KB
testcase_03 AC 104 ms
40,204 KB
testcase_04 AC 122 ms
41,084 KB
testcase_05 AC 150 ms
43,120 KB
testcase_06 AC 140 ms
42,036 KB
testcase_07 AC 176 ms
44,772 KB
testcase_08 AC 178 ms
45,192 KB
testcase_09 AC 140 ms
42,632 KB
testcase_10 AC 135 ms
43,128 KB
testcase_11 AC 174 ms
45,080 KB
testcase_12 AC 189 ms
45,264 KB
testcase_13 AC 171 ms
45,184 KB
testcase_14 AC 188 ms
45,372 KB
testcase_15 AC 170 ms
44,948 KB
testcase_16 AC 161 ms
44,596 KB
testcase_17 AC 182 ms
44,872 KB
testcase_18 AC 189 ms
45,508 KB
testcase_19 AC 171 ms
45,016 KB
testcase_20 AC 162 ms
44,796 KB
testcase_21 AC 107 ms
40,260 KB
testcase_22 AC 188 ms
45,560 KB
testcase_23 AC 145 ms
41,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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