結果

問題 No.289 数字を全て足そう
ユーザー cande398cande398
提出日時 2017-10-10 17:30:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 288 ms / 1,000 ms
コード長 291 bytes
コンパイル時間 2,199 ms
コンパイル使用メモリ 74,644 KB
実行使用メモリ 48,768 KB
最終ジャッジ日時 2024-11-17 08:28:21
合計ジャッジ時間 8,736 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,260 KB
testcase_01 AC 130 ms
41,012 KB
testcase_02 AC 129 ms
41,292 KB
testcase_03 AC 127 ms
40,864 KB
testcase_04 AC 127 ms
40,896 KB
testcase_05 AC 227 ms
45,416 KB
testcase_06 AC 202 ms
43,964 KB
testcase_07 AC 274 ms
48,092 KB
testcase_08 AC 275 ms
47,792 KB
testcase_09 AC 214 ms
45,612 KB
testcase_10 AC 247 ms
47,680 KB
testcase_11 AC 264 ms
47,504 KB
testcase_12 AC 284 ms
48,016 KB
testcase_13 AC 253 ms
47,952 KB
testcase_14 AC 288 ms
48,440 KB
testcase_15 AC 269 ms
47,656 KB
testcase_16 AC 246 ms
47,276 KB
testcase_17 AC 266 ms
48,124 KB
testcase_18 AC 272 ms
48,320 KB
testcase_19 AC 266 ms
48,744 KB
testcase_20 AC 271 ms
48,416 KB
testcase_21 AC 132 ms
40,868 KB
testcase_22 AC 275 ms
48,768 KB
testcase_23 AC 253 ms
47,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

public class Main{
  public static void main(String[] args){
    String[] line = new java.util.Scanner(System.in).next().split("");
    int sum = 0;
    for(int i=0;i<line.length;i++){
      sum += Integer.parseInt(line[i].replaceAll("[^0-9]","0"));
    }
    System.out.println(sum);
  }
}
0