結果

問題 No.233 めぐるはめぐる (3)
ユーザー nebukuro09nebukuro09
提出日時 2016-11-02 13:12:16
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 790 bytes
コンパイル時間 859 ms
コンパイル使用メモリ 99,968 KB
実行使用メモリ 25,216 KB
最終ジャッジ日時 2024-06-12 04:53:11
合計ジャッジ時間 4,109 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
19,072 KB
testcase_01 AC 29 ms
8,960 KB
testcase_02 AC 17 ms
6,912 KB
testcase_03 AC 32 ms
9,216 KB
testcase_04 AC 169 ms
24,064 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 210 ms
25,216 KB
testcase_08 AC 198 ms
25,216 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 29 ms
8,960 KB
testcase_13 AC 56 ms
19,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio;
import std.array;
import std.string;
import std.conv;
import std.algorithm;
import std.typecons;
import std.range;

void main() {
  int N = readln().chomp.to!int;
  bool[string] used;
  foreach (i; iota(N))
    used[readln().chomp] = true;

  string s1 = "iaaeuu";
  string s2 = "nbmgr";
  auto p1 = [0, 1, 2, 3, 4, 5];
  do {
    auto p2 = [0, 1, 2, 3, 4];
    do {
      string s3 = "";
      string s4 = "";
      foreach (i; iota(5)) {
        s3 ~= s1[p1[i]];
        s3 ~= s2[p2[i]];
        s4 ~= s2[p2[i]];
        s4 ~= s1[p1[i]];
      }
      if (!(s3~s1[p1[5]] in used)) {writeln(s3~s1[p1[5]]); return;}
      if (!(s4~s1[p1[5]] in used)) {writeln(s4~s1[p1[5]]); return;}
    } while(nextPermutation(p2));
  } while(nextPermutation(p1));
  
  writeln("NO");
}
0