結果

問題 No.289 数字を全て足そう
ユーザー mits58mits58
提出日時 2016-05-05 15:04:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 162 ms / 1,000 ms
コード長 365 bytes
コンパイル時間 2,326 ms
コンパイル使用メモリ 74,972 KB
実行使用メモリ 54,416 KB
最終ジャッジ日時 2024-10-08 00:55:39
合計ジャッジ時間 6,758 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,000 KB
testcase_01 AC 141 ms
54,416 KB
testcase_02 AC 134 ms
54,068 KB
testcase_03 AC 135 ms
54,080 KB
testcase_04 AC 135 ms
54,008 KB
testcase_05 AC 140 ms
53,972 KB
testcase_06 AC 141 ms
54,028 KB
testcase_07 AC 150 ms
53,924 KB
testcase_08 AC 153 ms
53,884 KB
testcase_09 AC 141 ms
54,000 KB
testcase_10 AC 146 ms
53,776 KB
testcase_11 AC 148 ms
54,060 KB
testcase_12 AC 152 ms
54,024 KB
testcase_13 AC 148 ms
54,056 KB
testcase_14 AC 152 ms
54,220 KB
testcase_15 AC 158 ms
53,940 KB
testcase_16 AC 152 ms
54,008 KB
testcase_17 AC 151 ms
54,064 KB
testcase_18 AC 152 ms
53,716 KB
testcase_19 AC 162 ms
54,148 KB
testcase_20 AC 151 ms
54,020 KB
testcase_21 AC 139 ms
53,784 KB
testcase_22 AC 152 ms
54,028 KB
testcase_23 AC 156 ms
53,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        while(sc.hasNext()){
        	String s=sc.next();
        	int res=0;
        	for(int i=0;i<s.length();i++) if(s.charAt(i)-'0'>=0 && s.charAt(i)-'0'<=9) res+=s.charAt(i)-'0';
        	System.out.println(res);
        }
    }
}
0