結果

問題 No.289 数字を全て足そう
ユーザー r.suzukir.suzuki
提出日時 2015-12-08 17:01:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 1,000 ms
コード長 607 bytes
コンパイル時間 3,739 ms
コンパイル使用メモリ 75,932 KB
実行使用メモリ 42,128 KB
最終ジャッジ日時 2024-10-08 00:33:27
合計ジャッジ時間 7,199 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,104 KB
testcase_01 AC 116 ms
41,104 KB
testcase_02 AC 118 ms
40,932 KB
testcase_03 AC 107 ms
41,212 KB
testcase_04 AC 100 ms
41,036 KB
testcase_05 AC 131 ms
41,592 KB
testcase_06 AC 107 ms
41,520 KB
testcase_07 AC 135 ms
41,472 KB
testcase_08 AC 136 ms
42,056 KB
testcase_09 AC 129 ms
41,536 KB
testcase_10 AC 145 ms
41,464 KB
testcase_11 AC 146 ms
41,672 KB
testcase_12 AC 128 ms
41,776 KB
testcase_13 AC 133 ms
41,472 KB
testcase_14 AC 143 ms
42,044 KB
testcase_15 AC 135 ms
41,976 KB
testcase_16 AC 139 ms
41,708 KB
testcase_17 AC 144 ms
41,884 KB
testcase_18 AC 128 ms
41,932 KB
testcase_19 AC 139 ms
41,700 KB
testcase_20 AC 142 ms
41,892 KB
testcase_21 AC 111 ms
41,036 KB
testcase_22 AC 148 ms
41,712 KB
testcase_23 AC 148 ms
42,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No_289 {
	static String[] numbers = { "0", "1", "2", "3", "4", "5", "6", "7", "8", "9" };

	static boolean checkOfWord(String c) {
		for (String n : numbers) {
			if (c.equals(n)) {
				return true;
			}
		}
		return false;
	}

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		int sum = 0;

		for (int i = 0; i < s.length(); i++) {
			String check = s.substring(i, i + 1);
			if (checkOfWord(check)) {
				int j = Integer.parseInt(check);
				sum += j;
			}
		}
		System.out.println(sum);
		sc.close();

	}

}
0