結果

問題 No.233 めぐるはめぐる (3)
ユーザー htensaihtensai
提出日時 2020-05-12 17:13:59
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,447 bytes
コンパイル時間 2,346 ms
コンパイル使用メモリ 79,552 KB
実行使用メモリ 77,216 KB
最終ジャッジ日時 2024-09-13 15:33:14
合計ジャッジ時間 14,659 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 756 ms
65,340 KB
testcase_01 AC 577 ms
55,652 KB
testcase_02 AC 399 ms
52,108 KB
testcase_03 AC 562 ms
56,828 KB
testcase_04 AC 826 ms
67,516 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 833 ms
67,068 KB
testcase_08 AC 811 ms
76,268 KB
testcase_09 AC 137 ms
41,424 KB
testcase_10 AC 134 ms
41,036 KB
testcase_11 AC 136 ms
41,284 KB
testcase_12 AC 542 ms
55,948 KB
testcase_13 AC 694 ms
65,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		HashSet<String> exist = new HashSet<>();
		for (int i = 0; i < n; i++) {
		    exist.add(sc.next());
		}
		StringSet boins = new StringSet("iaaeuu");
		StringSet shiins = new StringSet("nbmgr");
		for (String x : boins.set) {
		    for (String y : shiins.set) {
		        String z = merge(x, y);
		        if (!exist.contains(z)) {
		            System.out.println(z);
		            return;
		        }
		    }
		}
		System.out.println("NO");
	}
	
	static String merge(String boin, String shiin) {
	    StringBuilder sb = new StringBuilder();
	    for (int i = 0; i < boin.length() + shiin.length(); i++) {
	        if (i % 2 == 0) {
	            sb.append(boin.charAt(i / 2));
	        } else {
	            sb.append(shiin.charAt(i / 2));
	        }
	    }
	    return sb.toString();
	}
	
	static class StringSet {
	    char[] base;
	    HashSet<String> set = new HashSet<>();
	    
	    public StringSet(String s) {
	        base = s.toCharArray();
	        make(new char[base.length], 0, 0);
	    }
	    
	    void make(char[] arr, int idx, int mask) {
	        if (idx >= arr.length) {
	            set.add(new String(arr));
	            return;
	        }
	        for (int i = 0; i < base.length; i++) {
	            if ((mask & (1 << i)) != 0) {
	                continue;
	            }
	            arr[idx] = base[i];
	            make(arr, idx + 1, mask ^ (1 << i));
	        }
	    }
	}
	
	static boolean getResult(StringBuilder sb, int left, int right, boolean isLeft) {
	    int idx = -1;
	    char ch = (char)0;
	    while (left >= 0 && right < sb.length()) {
	        if (sb.charAt(left) != sb.charAt(right)) {
	            if (idx >= 0) {
	                return false;
	            }
	            if (isLeft) {
	                idx = left + 1;
	                ch = sb.charAt(right);
	                right++;
	            } else {
	                idx = right;
	                ch = sb.charAt(left);
	                left--;
	            }
	        } else {
	            left--;
	            right++;
	        }
	    }
	    if (idx < 0) {
	        if (isLeft) {
	            idx = 0;
	            ch = sb.charAt(sb.length() - 1);
	        } else {
	            idx = sb.length();
	            ch = sb.charAt(0);
	        }
	    }
	    sb.insert(idx, ch);
	    return true;
	}
}
0