結果

問題 No.289 数字を全て足そう
ユーザー oyafusooyafuso
提出日時 2019-03-11 16:41:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 173 ms / 1,000 ms
コード長 889 bytes
コンパイル時間 2,098 ms
コンパイル使用メモリ 75,024 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-06-23 15:37:37
合計ジャッジ時間 6,535 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,992 KB
testcase_01 AC 128 ms
54,004 KB
testcase_02 AC 130 ms
53,964 KB
testcase_03 AC 127 ms
54,136 KB
testcase_04 AC 127 ms
53,976 KB
testcase_05 AC 140 ms
53,940 KB
testcase_06 AC 135 ms
54,108 KB
testcase_07 AC 148 ms
54,212 KB
testcase_08 AC 161 ms
54,020 KB
testcase_09 AC 135 ms
54,068 KB
testcase_10 AC 133 ms
52,916 KB
testcase_11 AC 152 ms
54,020 KB
testcase_12 AC 173 ms
54,024 KB
testcase_13 AC 162 ms
53,956 KB
testcase_14 AC 168 ms
54,292 KB
testcase_15 AC 151 ms
54,152 KB
testcase_16 AC 154 ms
54,260 KB
testcase_17 AC 151 ms
54,240 KB
testcase_18 AC 171 ms
54,212 KB
testcase_19 AC 162 ms
53,960 KB
testcase_20 AC 161 ms
54,064 KB
testcase_21 AC 126 ms
54,228 KB
testcase_22 AC 168 ms
54,172 KB
testcase_23 AC 173 ms
53,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {

	private static final String SPLIT_STR = " ";
	private static final char[] CHAR_NUM_ARRAY = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9'};

	public static void main(String[] args) {
		// Scanner生成
		Scanner sc = new Scanner(System.in);
		// 入力設定
		String input = sc.nextLine();
		// Scannerクローズ
		sc.close();

		/* メイン処理開始 */
		// 変数初期化
		int result = 0;
		// 結果設定
		for (int i = 0; i < input.length(); i++) {
			if (isNumber(input.charAt(i))) {
				result += Integer.parseInt(input.substring(i, i + 1));
			}
		}
		/* メイン処理終了 */

		// 結果出力
		System.out.println(result);
	}

	// 引数が数字ならtrue, 数字以外ならfalse
	private static boolean isNumber(char c) {
		for (char num : CHAR_NUM_ARRAY) {
			if (c == num) {
				return true;
			}
		}
		return false;
	}
}
0