結果

問題 No.289 数字を全て足そう
ユーザー nihi9119nihi9119
提出日時 2017-05-15 01:25:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 1,000 ms
コード長 2,002 bytes
コンパイル時間 3,944 ms
コンパイル使用メモリ 78,068 KB
実行使用メモリ 42,008 KB
最終ジャッジ日時 2024-09-16 05:56:09
合計ジャッジ時間 6,835 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
36,804 KB
testcase_01 AC 59 ms
37,256 KB
testcase_02 AC 58 ms
37,120 KB
testcase_03 AC 57 ms
37,072 KB
testcase_04 AC 58 ms
36,704 KB
testcase_05 AC 91 ms
39,108 KB
testcase_06 AC 82 ms
38,144 KB
testcase_07 AC 117 ms
41,356 KB
testcase_08 AC 113 ms
40,876 KB
testcase_09 AC 91 ms
38,676 KB
testcase_10 AC 99 ms
39,604 KB
testcase_11 AC 110 ms
40,596 KB
testcase_12 AC 115 ms
41,408 KB
testcase_13 AC 108 ms
40,668 KB
testcase_14 AC 117 ms
41,580 KB
testcase_15 AC 103 ms
40,900 KB
testcase_16 AC 96 ms
40,548 KB
testcase_17 AC 115 ms
40,700 KB
testcase_18 AC 120 ms
41,628 KB
testcase_19 AC 109 ms
40,628 KB
testcase_20 AC 110 ms
40,768 KB
testcase_21 AC 58 ms
37,068 KB
testcase_22 AC 117 ms
41,524 KB
testcase_23 AC 123 ms
42,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*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 MAX_LENGTH = 1;
	static final int MIN_LENGTH = 10000;

	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) == 0) {
				int result = 0;
				Pattern p = Pattern.compile("^[0-9]+$");
				String[] inputStringArry = inputString.split("");
				for (int i = 0; i < inputStringArry.length; i++) {
					Matcher m = p.matcher(inputStringArry[i]);
					if (m.find()) {
						result += Integer.parseInt(inputStringArry[i]);
					} else {
						continue;
					}
				}
				System.out.println(result);
			} else {
				if (inputCheck(inputString) == 1) {
					System.out.println("桁数が正しくありません");
				} else {
					System.out.println("英数半角以外の文字が入力されています");
				}

			}

		} catch (IOException e) {

		} finally {

		}
	}

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

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

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

}
0