結果

問題 No.289 数字を全て足そう
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-14 09:53:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 159 ms / 1,000 ms
コード長 381 bytes
コンパイル時間 2,442 ms
コンパイル使用メモリ 74,540 KB
実行使用メモリ 43,072 KB
最終ジャッジ日時 2024-11-17 14:01:45
合計ジャッジ時間 6,475 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
40,928 KB
testcase_01 AC 120 ms
41,248 KB
testcase_02 AC 123 ms
41,068 KB
testcase_03 AC 124 ms
40,824 KB
testcase_04 AC 120 ms
41,276 KB
testcase_05 AC 140 ms
41,844 KB
testcase_06 AC 130 ms
41,404 KB
testcase_07 AC 150 ms
42,396 KB
testcase_08 AC 157 ms
41,740 KB
testcase_09 AC 141 ms
41,968 KB
testcase_10 AC 153 ms
42,448 KB
testcase_11 AC 151 ms
42,908 KB
testcase_12 AC 159 ms
41,700 KB
testcase_13 AC 145 ms
42,716 KB
testcase_14 AC 154 ms
41,936 KB
testcase_15 AC 153 ms
41,948 KB
testcase_16 AC 156 ms
42,220 KB
testcase_17 AC 159 ms
41,932 KB
testcase_18 AC 159 ms
41,876 KB
testcase_19 AC 153 ms
43,072 KB
testcase_20 AC 150 ms
42,116 KB
testcase_21 AC 107 ms
39,680 KB
testcase_22 AC 158 ms
41,940 KB
testcase_23 AC 151 ms
41,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		s = s.replaceAll("[A-Za-z]", "");
		if(s.length() == 0) {
			System.out.println(0);
		} else {
			int ans = 0;
			for(int i = 0 ; i < s.length() ; i++) {
				ans += s.charAt(i) - '0';
			}
			System.out.println(ans);
		}
	}
}
0