結果

問題 No.289 数字を全て足そう
ユーザー fal_rndfal_rnd
提出日時 2017-03-13 23:59:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 1,000 ms
コード長 307 bytes
コンパイル時間 3,127 ms
コンパイル使用メモリ 74,232 KB
実行使用メモリ 41,580 KB
最終ジャッジ日時 2024-06-30 00:41:31
合計ジャッジ時間 7,235 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,580 KB
testcase_01 AC 121 ms
41,168 KB
testcase_02 AC 125 ms
41,300 KB
testcase_03 AC 107 ms
40,156 KB
testcase_04 AC 124 ms
41,408 KB
testcase_05 AC 115 ms
40,028 KB
testcase_06 AC 117 ms
40,124 KB
testcase_07 AC 135 ms
41,468 KB
testcase_08 AC 147 ms
41,068 KB
testcase_09 AC 128 ms
41,472 KB
testcase_10 AC 139 ms
41,320 KB
testcase_11 AC 138 ms
41,428 KB
testcase_12 AC 135 ms
41,328 KB
testcase_13 AC 135 ms
41,356 KB
testcase_14 AC 137 ms
41,532 KB
testcase_15 AC 126 ms
41,256 KB
testcase_16 AC 139 ms
41,360 KB
testcase_17 AC 138 ms
41,568 KB
testcase_18 AC 138 ms
41,308 KB
testcase_19 AC 127 ms
40,820 KB
testcase_20 AC 135 ms
41,336 KB
testcase_21 AC 111 ms
41,020 KB
testcase_22 AC 136 ms
41,484 KB
testcase_23 AC 137 ms
41,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class A{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args) {
		char in[] = s.next().toCharArray();
		int result=0;
		for(int i=0;i<in.length;i++) {
			if('0'<=in[i]&&in[i]<='9') {
				result+=in[i]-'0';
			}
		}
		System.out.println(result);
	}
}
0