結果

問題 No.289 数字を全て足そう
ユーザー nihi9119nihi9119
提出日時 2017-05-25 19:58:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 76 ms / 1,000 ms
コード長 2,450 bytes
コンパイル時間 3,536 ms
コンパイル使用メモリ 77,888 KB
実行使用メモリ 51,164 KB
最終ジャッジ日時 2024-09-19 19:15:44
合計ジャッジ時間 5,526 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,324 KB
testcase_01 AC 53 ms
50,316 KB
testcase_02 AC 53 ms
50,328 KB
testcase_03 AC 53 ms
50,532 KB
testcase_04 AC 53 ms
50,512 KB
testcase_05 AC 57 ms
50,240 KB
testcase_06 AC 57 ms
50,424 KB
testcase_07 AC 73 ms
51,080 KB
testcase_08 AC 64 ms
50,792 KB
testcase_09 AC 56 ms
50,264 KB
testcase_10 AC 56 ms
50,476 KB
testcase_11 AC 60 ms
50,760 KB
testcase_12 AC 74 ms
50,888 KB
testcase_13 AC 61 ms
50,380 KB
testcase_14 AC 76 ms
51,164 KB
testcase_15 AC 62 ms
50,292 KB
testcase_16 AC 57 ms
50,672 KB
testcase_17 AC 61 ms
51,032 KB
testcase_18 AC 75 ms
51,112 KB
testcase_19 AC 60 ms
50,660 KB
testcase_20 AC 63 ms
50,660 KB
testcase_21 AC 53 ms
50,280 KB
testcase_22 AC 62 ms
50,536 KB
testcase_23 AC 63 ms
51,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package test;

/*No.289 数字を全て足そう
*
* 文字列SSが与えられるので, その中のそれぞれの数字を1桁の数値とみなして, 全ての合計値を求めてください.
* 例えば1test23という文字列の数字の合計値は1+2+3=61+2+3=6となる.
* */

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class Question_03_0515_1 {

	//桁数チェックで使用
	static final int MIN_LENGTH = 1;
	static final int MAX_LENGTH = 10000;

	// inputCheckで
	static final int NOMAL = 0;
	static final int ERROR_NUMBER_LENGTH = 1;
	static final int ERROR_CHARACTER = 2;

	public static void main(String[] args) {
		InputStreamReader re = new InputStreamReader(System.in);
		BufferedReader br = new BufferedReader(re);

		try {
			String inputString = br.readLine();
			// 入力チェック
			if (inputCheck(inputString) == NOMAL) {
				int result = 0;
				char[] charArry = inputString.toCharArray();
				for (int i = 0; i < charArry.length; i++) {
					boolean isDigit = Character.isDigit(charArry[i]);
					if (isDigit) {
						result += Character.getNumericValue(charArry[i]);
					}
				}
				System.out.println(result);
			} else {
				if (inputCheck(inputString) == ERROR_NUMBER_LENGTH) {
					System.out.println("桁数が正しくありません");
				} else {
					System.out.println("英数半角以外の文字が入力されています");
				}
			}

		} catch (IOException e) {
			System.out.println("エラーが発生しました");
		} finally {
			try {
				re.close();
				br.close();
			} catch (IOException e) {
				System.out.println("InputStreamReader、BufferedReaderクローズ中にエラーが発生しました");
			}
		}
	}

	/*
	 * 入力値が正しいか判定
	 * 返り値:
	 * NOMAL=問題なし
	 * ERROR_NUMBER_LENGTH =桁数に問題あり、
	 * ERROR_CHARACTER=半角英数字以外あり
	 */
	private static int inputCheck(String inputString) {
		int result = NOMAL;

		// 判定するパターン生成
		Pattern p = Pattern.compile("^[0-9a-zA-Z]+$");

		// 桁数チェック
		if (inputString.length() < MIN_LENGTH || inputString.length() > MAX_LENGTH) {
			result = ERROR_NUMBER_LENGTH;
		}
		// 英数半角チェック
		else {
			Matcher m = p.matcher(inputString);
			if (!m.find()) {
				result = ERROR_CHARACTER;
			}
		}
		return result;
	}

}
0