結果

問題 No.233 めぐるはめぐる (3)
ユーザー latte0119latte0119
提出日時 2015-06-28 17:23:10
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 124 ms / 1,000 ms
コード長 816 bytes
コンパイル時間 1,477 ms
コンパイル使用メモリ 169,172 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-07-07 20:37:23
合計ジャッジ時間 3,979 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
13,056 KB
testcase_01 AC 47 ms
9,600 KB
testcase_02 AC 22 ms
6,940 KB
testcase_03 AC 53 ms
10,368 KB
testcase_04 AC 124 ms
13,440 KB
testcase_05 AC 99 ms
13,568 KB
testcase_06 AC 92 ms
13,696 KB
testcase_07 AC 115 ms
13,568 KB
testcase_08 AC 116 ms
13,568 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 48 ms
9,856 KB
testcase_13 AC 81 ms
13,440 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:12:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   12 |     scanf("%d",&N);
      |     ~~~~~^~~~~~~~~
main.cpp:15:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   15 |         scanf("%s",str);
      |         ~~~~~^~~~~~~~~~

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;


int N;
set<string>S;

char s[]="nbmgr";
char b[]="iaaeuu";

int main(){
    scanf("%d",&N);
    for(int i=0;i<N;i++){
        char str[20];
        scanf("%s",str);
        S.insert(str);
    }

    sort(s,s+5);
    sort(b,b+6);

    do{
        do{
            for(int i=0;i<6;i++){
                string str;
                for(int j=0;j<5;j++){
                    if(i==j)str+=b[5];
                    str+=s[j];
                    str+=b[j];
                }
                if(i==5)str+=b[5];

                if(S.find(str)==S.end()){
                    printf("%s\n",str.c_str());
                    return 0;
                }
            }
        }while(next_permutation(b,b+6));
    }while(next_permutation(s,s+5));

    puts("NO");

    return 0;
}
0