結果

問題 No.289 数字を全て足そう
ユーザー 37zigen37zigen
提出日時 2016-03-29 13:15:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 1,000 ms
コード長 310 bytes
コンパイル時間 2,369 ms
コンパイル使用メモリ 74,416 KB
実行使用メモリ 54,332 KB
最終ジャッジ日時 2024-10-08 00:51:52
合計ジャッジ時間 6,907 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
53,980 KB
testcase_01 AC 138 ms
53,888 KB
testcase_02 AC 139 ms
54,144 KB
testcase_03 AC 142 ms
53,956 KB
testcase_04 AC 136 ms
53,720 KB
testcase_05 AC 143 ms
53,796 KB
testcase_06 AC 141 ms
54,120 KB
testcase_07 AC 150 ms
53,968 KB
testcase_08 AC 155 ms
53,876 KB
testcase_09 AC 145 ms
53,912 KB
testcase_10 AC 152 ms
53,832 KB
testcase_11 AC 158 ms
53,904 KB
testcase_12 AC 160 ms
53,908 KB
testcase_13 AC 153 ms
53,804 KB
testcase_14 AC 156 ms
54,332 KB
testcase_15 AC 152 ms
54,088 KB
testcase_16 AC 153 ms
54,092 KB
testcase_17 AC 155 ms
54,268 KB
testcase_18 AC 161 ms
54,116 KB
testcase_19 AC 157 ms
54,308 KB
testcase_20 AC 154 ms
54,060 KB
testcase_21 AC 134 ms
53,712 KB
testcase_22 AC 155 ms
54,328 KB
testcase_23 AC 157 ms
54,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder289;
import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		String str=sc.next();
		char[] s=str.toCharArray();
		int ret=0;
		for(char c:s){
			if(c>='0'&&c<='9'){
				ret+=c-'0';
			}
		}
		System.out.println(ret);
	}
}
0