結果

問題 No.289 数字を全て足そう
ユーザー show258show258
提出日時 2017-04-04 02:52:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 1,000 ms
コード長 688 bytes
コンパイル時間 3,185 ms
コンパイル使用メモリ 74,164 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-07-08 05:47:56
合計ジャッジ時間 6,591 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
52,624 KB
testcase_01 AC 105 ms
53,992 KB
testcase_02 AC 101 ms
53,888 KB
testcase_03 AC 93 ms
52,588 KB
testcase_04 AC 94 ms
52,928 KB
testcase_05 AC 114 ms
53,724 KB
testcase_06 AC 108 ms
53,728 KB
testcase_07 AC 116 ms
54,088 KB
testcase_08 AC 116 ms
53,828 KB
testcase_09 AC 99 ms
52,916 KB
testcase_10 AC 108 ms
52,760 KB
testcase_11 AC 109 ms
52,856 KB
testcase_12 AC 113 ms
53,056 KB
testcase_13 AC 110 ms
53,052 KB
testcase_14 AC 112 ms
52,836 KB
testcase_15 AC 108 ms
52,692 KB
testcase_16 AC 108 ms
52,812 KB
testcase_17 AC 126 ms
53,800 KB
testcase_18 AC 112 ms
53,232 KB
testcase_19 AC 110 ms
54,364 KB
testcase_20 AC 109 ms
52,992 KB
testcase_21 AC 95 ms
52,792 KB
testcase_22 AC 121 ms
53,856 KB
testcase_23 AC 131 ms
53,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No289 {
  public static void main(String[] args) {
    // 標準入力から読み込む際に、Scannerオブジェクトを使う。
    Scanner sc = new Scanner(System.in);

    // String 入力文字列を読み込む
    String str = sc.next();

    sc.close(); // 標準入力をクローズ

    int sum = 0; //合計値変数を0にセット

    for (int i = 0; i < str.length(); i++) {
    //char ch = str.charAt(i);  //入力文字列のi番目をchに取得

      if(Character.isDigit(str.charAt(i))) {  //chが数字の場合
        sum += Character.getNumericValue(str.charAt(i));
      }
    }

    System.out.println(sum);

  }
}
0