結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,076 KB
testcase_01 AC 121 ms
41,040 KB
testcase_02 AC 121 ms
40,996 KB
testcase_03 AC 122 ms
41,488 KB
testcase_04 AC 108 ms
40,284 KB
testcase_05 AC 117 ms
41,124 KB
testcase_06 AC 129 ms
41,352 KB
testcase_07 AC 135 ms
41,288 KB
testcase_08 AC 134 ms
41,312 KB
testcase_09 AC 125 ms
41,396 KB
testcase_10 AC 132 ms
41,384 KB
testcase_11 AC 134 ms
41,304 KB
testcase_12 AC 140 ms
41,484 KB
testcase_13 AC 136 ms
41,344 KB
testcase_14 AC 139 ms
41,268 KB
testcase_15 AC 124 ms
40,040 KB
testcase_16 AC 123 ms
41,144 KB
testcase_17 AC 137 ms
41,504 KB
testcase_18 AC 123 ms
40,420 KB
testcase_19 AC 136 ms
41,296 KB
testcase_20 AC 125 ms
40,768 KB
testcase_21 AC 122 ms
41,312 KB
testcase_22 AC 133 ms
41,512 KB
testcase_23 AC 137 ms
41,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class A{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args) {
	}

	static {
		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