結果

問題 No.289 数字を全て足そう
ユーザー HEGO55HEGO55
提出日時 2017-05-17 15:53:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 1,000 ms
コード長 413 bytes
コンパイル時間 2,080 ms
コンパイル使用メモリ 74,392 KB
実行使用メモリ 41,616 KB
最終ジャッジ日時 2024-09-17 20:59:05
合計ジャッジ時間 6,253 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,076 KB
testcase_01 AC 124 ms
41,184 KB
testcase_02 AC 123 ms
40,940 KB
testcase_03 AC 121 ms
41,240 KB
testcase_04 AC 125 ms
41,548 KB
testcase_05 AC 139 ms
41,120 KB
testcase_06 AC 114 ms
40,048 KB
testcase_07 AC 147 ms
41,172 KB
testcase_08 AC 138 ms
41,124 KB
testcase_09 AC 128 ms
41,236 KB
testcase_10 AC 137 ms
41,616 KB
testcase_11 AC 143 ms
41,276 KB
testcase_12 AC 141 ms
41,244 KB
testcase_13 AC 145 ms
41,544 KB
testcase_14 AC 137 ms
41,544 KB
testcase_15 AC 135 ms
41,064 KB
testcase_16 AC 138 ms
41,328 KB
testcase_17 AC 138 ms
41,248 KB
testcase_18 AC 142 ms
41,324 KB
testcase_19 AC 143 ms
41,408 KB
testcase_20 AC 141 ms
41,164 KB
testcase_21 AC 125 ms
41,424 KB
testcase_22 AC 143 ms
41,216 KB
testcase_23 AC 138 ms
41,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class Test38{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		String str = sc.next();
		char[] c = str.toCharArray();
		int sum = 0;
		
		for(int i=0; i<c.length; i++){
			if(c[i]=='0'||c[i]=='1'||c[i]=='2'||c[i]=='3'||c[i]=='4'||c[i]=='5'||c[i]=='6'||c[i]=='7'||c[i]=='8'||c[i]=='9'){
				sum += (int)(c[i])-48;
			}
		}
		
		System.out.println(sum);
	}
}
0