結果

問題 No.289 数字を全て足そう
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-09-12 18:03:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 181 ms / 1,000 ms
コード長 1,013 bytes
コンパイル時間 2,543 ms
コンパイル使用メモリ 74,172 KB
実行使用メモリ 42,052 KB
最終ジャッジ日時 2024-11-07 17:23:39
合計ジャッジ時間 6,920 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,000 KB
testcase_01 AC 115 ms
39,820 KB
testcase_02 AC 113 ms
39,968 KB
testcase_03 AC 111 ms
39,920 KB
testcase_04 AC 116 ms
39,808 KB
testcase_05 AC 152 ms
41,376 KB
testcase_06 AC 141 ms
41,508 KB
testcase_07 AC 171 ms
41,828 KB
testcase_08 AC 168 ms
41,724 KB
testcase_09 AC 143 ms
41,344 KB
testcase_10 AC 155 ms
41,428 KB
testcase_11 AC 166 ms
41,940 KB
testcase_12 AC 177 ms
41,888 KB
testcase_13 AC 167 ms
41,764 KB
testcase_14 AC 176 ms
41,928 KB
testcase_15 AC 163 ms
41,684 KB
testcase_16 AC 161 ms
41,572 KB
testcase_17 AC 167 ms
42,052 KB
testcase_18 AC 178 ms
41,892 KB
testcase_19 AC 162 ms
41,776 KB
testcase_20 AC 164 ms
41,964 KB
testcase_21 AC 106 ms
39,888 KB
testcase_22 AC 167 ms
42,036 KB
testcase_23 AC 181 ms
41,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
 
class No289{
          public static void main(String[] args){

                     int sum =0;

                     Scanner sc = new Scanner(System.in);
                     String str1 = sc.nextLine();
                     String[] str2 = str1.split("");   //入力した文字を1文字ずつ配列に格納
                     String x = "123456789";   //一致するかの確認のため用意
 
                     for (int i=0; i<str2.length; i++){    //入力した文字を1つずつ検証
                               if (x.indexOf(str2[i])!=-1){   //文字列の数字と一致するなら
                                          int num = Integer.parseInt(str2[i]);   //文字を数値に変換
                                          sum += num; //数値を加算していく
                               }                                    
                     }

                     System.out.println(sum);
                     sc.close();
           }
}
0