結果

問題 No.289 数字を全て足そう
ユーザー Ryota EnokidoRyota Enokido
提出日時 2018-12-12 10:22:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 1,000 ms
コード長 502 bytes
コンパイル時間 2,150 ms
コンパイル使用メモリ 74,212 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-09-25 03:31:31
合計ジャッジ時間 6,247 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,036 KB
testcase_01 AC 122 ms
54,016 KB
testcase_02 AC 127 ms
54,304 KB
testcase_03 AC 123 ms
53,992 KB
testcase_04 AC 108 ms
52,860 KB
testcase_05 AC 136 ms
53,888 KB
testcase_06 AC 131 ms
54,020 KB
testcase_07 AC 142 ms
53,312 KB
testcase_08 AC 137 ms
54,196 KB
testcase_09 AC 131 ms
53,912 KB
testcase_10 AC 138 ms
53,988 KB
testcase_11 AC 139 ms
53,888 KB
testcase_12 AC 156 ms
54,100 KB
testcase_13 AC 138 ms
54,104 KB
testcase_14 AC 153 ms
54,032 KB
testcase_15 AC 144 ms
53,720 KB
testcase_16 AC 135 ms
54,000 KB
testcase_17 AC 140 ms
53,684 KB
testcase_18 AC 158 ms
54,056 KB
testcase_19 AC 139 ms
54,032 KB
testcase_20 AC 146 ms
53,624 KB
testcase_21 AC 121 ms
54,216 KB
testcase_22 AC 161 ms
54,300 KB
testcase_23 AC 152 ms
54,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
  
  public class Main {
      public static void main(String[] args) {
          Scanner sc = new Scanner(System.in);
          
          int sum = 0;
          String s = sc.nextLine();
     
          for(int i=0; i<s.length(); i++){
              if(Character.isDigit(s.charAt(i))){
                  sum += Character.getNumericValue(s.charAt(i));
              }else{
                  continue;
              }
          }
          System.out.println(sum);
      }
  }
0