結果

問題 No.289 数字を全て足そう
ユーザー papipenpapipen
提出日時 2017-03-24 22:00:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 151 ms / 1,000 ms
コード長 372 bytes
コンパイル時間 2,317 ms
コンパイル使用メモリ 74,704 KB
実行使用メモリ 54,248 KB
最終ジャッジ日時 2024-07-06 02:10:10
合計ジャッジ時間 6,389 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,996 KB
testcase_01 AC 129 ms
53,996 KB
testcase_02 AC 128 ms
54,060 KB
testcase_03 AC 130 ms
54,008 KB
testcase_04 AC 128 ms
53,880 KB
testcase_05 AC 138 ms
54,104 KB
testcase_06 AC 133 ms
54,240 KB
testcase_07 AC 146 ms
53,860 KB
testcase_08 AC 146 ms
54,012 KB
testcase_09 AC 119 ms
53,060 KB
testcase_10 AC 139 ms
54,136 KB
testcase_11 AC 141 ms
54,248 KB
testcase_12 AC 142 ms
54,112 KB
testcase_13 AC 150 ms
54,132 KB
testcase_14 AC 144 ms
54,160 KB
testcase_15 AC 146 ms
53,880 KB
testcase_16 AC 149 ms
53,856 KB
testcase_17 AC 151 ms
53,912 KB
testcase_18 AC 146 ms
53,856 KB
testcase_19 AC 150 ms
53,932 KB
testcase_20 AC 144 ms
54,176 KB
testcase_21 AC 128 ms
53,992 KB
testcase_22 AC 150 ms
54,012 KB
testcase_23 AC 147 ms
53,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Suzi{
  public static void main(String[] args){
    Scanner sc = new Scanner(System.in);
    String a = sc.next();
    char ch[] = a.toCharArray();
    int sum = 0;
    for(int i = 0; i < a.length(); i++){
      if(Character.isDigit(ch[i])){
        sum += Character.getNumericValue(ch[i]);
      }
    }
    System.out.println(sum);
  }
}
0