結果

問題 No.233 めぐるはめぐる (3)
ユーザー nebukuro09nebukuro09
提出日時 2016-11-02 13:29:02
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 158 ms / 1,000 ms
コード長 750 bytes
コンパイル時間 882 ms
コンパイル使用メモリ 101,028 KB
実行使用メモリ 23,936 KB
最終ジャッジ日時 2024-06-12 04:53:21
合計ジャッジ時間 3,695 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
19,072 KB
testcase_01 AC 29 ms
8,832 KB
testcase_02 AC 16 ms
6,968 KB
testcase_03 AC 33 ms
9,216 KB
testcase_04 AC 112 ms
22,400 KB
testcase_05 AC 77 ms
20,096 KB
testcase_06 AC 117 ms
22,144 KB
testcase_07 AC 158 ms
23,936 KB
testcase_08 AC 145 ms
23,808 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 55 ms
19,200 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 = "ieau";
  string s2 = "nbmgr";
  auto p1 = [0, 1, 2, 2, 3, 3];
  do {
    auto p2 = [0, 1, 2, 3, 4];
    do {
      string s3 = "";
      foreach (i; iota(5)) {
        s3 ~= s2[p2[i]];
        s3 ~= s1[p1[i]];
      }

      foreach (i; iota(11)) {
        if (!(s3[0..i]~s1[p1[5]]~s3[i..$] in used)) { 
          writeln(s3[0..i]~s1[p1[5]]~s3[i..$]);
          return;
        }
      }
    } while(nextPermutation(p2));
  } while(nextPermutation(p1));
  
  writeln("NO");
}
0