結果

問題 No.349 干支の置き物
ユーザー nihi9119nihi9119
提出日時 2017-06-12 15:57:24
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,636 bytes
コンパイル時間 3,425 ms
コンパイル使用メモリ 78,820 KB
実行使用メモリ 50,544 KB
最終ジャッジ日時 2024-09-24 16:45:07
合計ジャッジ時間 6,052 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,496 KB
testcase_01 AC 53 ms
49,944 KB
testcase_02 AC 52 ms
50,196 KB
testcase_03 AC 52 ms
50,384 KB
testcase_04 AC 53 ms
50,236 KB
testcase_05 AC 53 ms
50,452 KB
testcase_06 AC 52 ms
50,388 KB
testcase_07 AC 51 ms
50,164 KB
testcase_08 AC 51 ms
50,448 KB
testcase_09 AC 51 ms
50,276 KB
testcase_10 AC 52 ms
50,044 KB
testcase_11 AC 52 ms
50,424 KB
testcase_12 AC 52 ms
49,924 KB
testcase_13 AC 51 ms
50,404 KB
testcase_14 AC 51 ms
50,076 KB
testcase_15 AC 50 ms
50,320 KB
testcase_16 AC 50 ms
50,384 KB
testcase_17 AC 50 ms
50,292 KB
testcase_18 WA -
testcase_19 AC 50 ms
50,392 KB
testcase_20 WA -
testcase_21 AC 50 ms
50,136 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 50 ms
50,228 KB
testcase_26 AC 51 ms
50,008 KB
testcase_27 AC 50 ms
50,068 KB
testcase_28 AC 52 ms
50,364 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 52 ms
50,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package test7;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;

/**
 * No.349 干支の置き物
 * http://yukicoder.me/problems/no/349
 */

public class Question_18_0612_1 {

	final static int MIN = 2;
	final static int MAX = 50;
	static HashMap<String, Integer> etoMap = new HashMap<String, Integer>();

	public static void main(String[] args) {

		InputStreamReader re = new InputStreamReader(System.in);
		BufferedReader br = new BufferedReader(re);

		try {

			//入力
			int etoCount = Integer.parseInt(br.readLine());
			List<String> etoList = new ArrayList<String>();
			for (int i = 0; i < etoCount; i++) {
				etoList.add(br.readLine());
			}
			// 入力判定
			if (NumJudg(etoCount, MIN, MAX)) {

				// 半分以上になったら隣通し並べられてしまう
				int overCount = (int) Math.floor(etoCount / 2);
				if (etoCount % 2 != 0) {
					overCount++;
				}

				//結果取得
				boolean overFlg = etoCheck(etoList, overCount);

				// 結果
				if (overFlg) {
					System.out.println("NO");
				} else {
					System.out.println("YES");
				}

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

		} catch (NumberFormatException e){

		} catch (IOException e) {

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

	}

	/**
	 * 干支の名前を数をチェックし、数がoverCountを超えたらfalseを返す
	 * @param etoList 干支の名前リスト
	 * @param overCount 超えてはいけない数
	 * @return overCountを超えたかどうか
	 */
	private static boolean etoCheck(List<String> etoList, int overCount) {
		//Map登録しながら確認
		boolean overFlg = false;
		int count;
		for (String etoName : etoList) {
			if (etoMap.containsKey(etoName)) {
				// Map登録済み(カウントを増やす)
				count = etoMap.get(etoName) + 1;
			} else {
				// Mapに未登録(登録する)
				count = 1;
			}
			if (count >= overCount) {
				overFlg = true;
				break;
			}
			etoMap.put(etoName, count);
		}
		return overFlg;
	}

	/**
	 * 有効値判定
	 * @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