結果

問題 No.365 ジェンガソート
ユーザー nihi9119nihi9119
提出日時 2017-06-20 15:48:47
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,093 bytes
コンパイル時間 3,409 ms
コンパイル使用メモリ 77,052 KB
実行使用メモリ 49,892 KB
最終ジャッジ日時 2024-10-02 05:49:56
合計ジャッジ時間 9,865 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,640 KB
testcase_01 AC 51 ms
36,836 KB
testcase_02 AC 51 ms
37,180 KB
testcase_03 AC 51 ms
36,980 KB
testcase_04 AC 51 ms
36,932 KB
testcase_05 AC 52 ms
37,120 KB
testcase_06 AC 52 ms
37,132 KB
testcase_07 AC 51 ms
36,956 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 51 ms
37,072 KB
testcase_15 AC 51 ms
37,212 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 94 ms
39,552 KB
testcase_19 AC 211 ms
49,712 KB
testcase_20 AC 123 ms
41,408 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 166 ms
47,824 KB
testcase_37 AC 212 ms
49,144 KB
testcase_38 WA -
testcase_39 AC 217 ms
49,516 KB
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package test8;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

/**
 * No.365 ジェンガソート
 * https://yukicoder.me/problems/no/365
 */

public class Question_24_0921 {

	final static int COUNT_MIN = 1;
	final static int LENTTH_MIN = 1;
	final static int COUNT_MAX = 100000;
	static int LENTTH_MAX;

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

		try {
			int count = Integer.parseInt(br.readLine());
			LENTTH_MAX = count;
			String[] inputStr = br.readLine().split(" ");
			int firstNum = Integer.parseInt(inputStr[0]);
			int minNum = 0;
			boolean errorFlg = false;

			//有効値判定
			if (NumJudg(count, COUNT_MIN, COUNT_MAX) && NumJudg(firstNum, LENTTH_MIN, LENTTH_MAX)) {

				if (firstNum != 1) {
					for (int i = 1; i < inputStr.length; i++) {
						int num = Integer.parseInt(inputStr[i]);
						if (NumJudg(num, LENTTH_MIN, LENTTH_MAX)) {
							if (num < firstNum) {
								minNum++;
							}
						} else {
							errorFlg = true;
							break;
						}
					}
				}

				if (errorFlg) {
					System.out.println("入力値が有効範囲外です");
				} else {
					System.out.println(minNum);
				}

			} else {
				System.out.println("入力値が有効範囲外です");
			}

		} catch (NumberFormatException e){
			System.out.println("数字を入力して下さい");
		} catch (IOException e) {
			System.out.println("エラーが発生しました");
		} finally {
			try {
				re.close();
				br.close();
			} catch (IOException e) {
				System.out.println("InputStreamReader、BufferedReaderクローズ中にエラーが発生しました");
			}
		}
	}

	/**
	 * 有効値判定
	 * @param input 判定するもの
	 * @param max 最大値
	 * @param min 最小値
	 * @return 範囲内ならtrue,範囲外ならfalseを返す
	 */
	private static boolean NumJudg(int input, int min, int max) {
		Boolean result = false;
		if (min <= input && input <= max) {
			result = true;
		}
		return result;
	}
}
0