結果

問題 No.289 数字を全て足そう
ユーザー kenji_shioyakenji_shioya
提出日時 2016-05-24 04:53:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 225 ms / 1,000 ms
コード長 632 bytes
コンパイル時間 4,332 ms
コンパイル使用メモリ 75,056 KB
実行使用メモリ 57,528 KB
最終ジャッジ日時 2024-10-08 01:00:31
合計ジャッジ時間 9,910 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
53,988 KB
testcase_01 AC 138 ms
53,904 KB
testcase_02 AC 140 ms
54,012 KB
testcase_03 AC 139 ms
53,636 KB
testcase_04 AC 138 ms
54,040 KB
testcase_05 AC 175 ms
56,556 KB
testcase_06 AC 173 ms
54,596 KB
testcase_07 AC 213 ms
57,144 KB
testcase_08 AC 212 ms
57,200 KB
testcase_09 AC 187 ms
56,804 KB
testcase_10 AC 191 ms
56,524 KB
testcase_11 AC 206 ms
57,304 KB
testcase_12 AC 223 ms
57,140 KB
testcase_13 AC 201 ms
57,528 KB
testcase_14 AC 211 ms
56,960 KB
testcase_15 AC 204 ms
57,508 KB
testcase_16 AC 194 ms
57,108 KB
testcase_17 AC 221 ms
57,132 KB
testcase_18 AC 225 ms
57,212 KB
testcase_19 AC 211 ms
57,432 KB
testcase_20 AC 210 ms
57,232 KB
testcase_21 AC 142 ms
53,812 KB
testcase_22 AC 221 ms
57,248 KB
testcase_23 AC 183 ms
54,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Exercises7{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int sum = 0;
    String str = sc.next();
    String[] strs = str.split("", 0);

    for(int n = 0; n < strs.length; n++){
      // boolean flag = isNumber(strs[n]);
      if (isNumber(strs[n])){
        int num = Integer.parseInt(strs[n]);
        sum += num;
      }
    }

     System.out.println(sum);
  }

  public static boolean isNumber(String num){
    try{
      int n = Integer.parseInt(num);
      return true;
    }catch (NumberFormatException e){
      return false;
    }
  }
}
0