結果

問題 No.233 めぐるはめぐる (3)
ユーザー TLwiegehttTLwiegehtt
提出日時 2015-07-15 05:53:08
言語 C90
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 1,102 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 21,248 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-08 07:36:20
合計ジャッジ時間 6,433 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
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 RE -
testcase_13 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:58:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   58 |         scanf("%d", &n);
      |         ^~~~~~~~~~~~~~~
main.c:60:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   60 |                 scanf("%s", before[i]);
      |                 ^~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <string.h>

#define BMAX	(10000)
char name[] = "aaiuuebgmnr";

int character[11]={1,1,1,1,1,1,1,1,1,1,1};

int n;
int spos;
char stack[13];
char before[BMAX][13];

int saiki(int back, int depth){
	int i,j;
	int ret;
	if(depth >= 11){
		char tmp[13];
		for(i=11-1, j=0;i>=0;i--,j++){
			tmp[j] = stack[i];
			tmp[j+1] = '\0';
		}
		for(i=0;i<n;i++){
			if(strcmp(tmp, before[i]) == 0){break;}
		}
		if(i==n){
			strcpy(stack, tmp);
			return 1;
		}
		return 0;
	}
	
	for(i=0;i<11;i++){
		if(character[i] == 0){continue;}
		if(5< back && 5<i){continue;}
		
		stack[spos] = name[i];
		stack[spos+1] = '\0';
		character[i] = 0;
		spos++;
		ret = saiki(i, depth+1);
		character[i] = 1;
		
		if(ret == 1){
			break;
		}
		spos--;
		
	}
	
	return ret;
}


int main(void){
	int i;
	
	scanf("%d", &n);
	for(i=0;i<n;i++){
		scanf("%s", before[i]);
	}
	
	for(i=0;i<6;i++){
		int ret;
		stack[spos] = name[i];
		stack[spos+1] = '\0';
		spos++;
		character[i] = 0;
		ret = saiki(0, 1);
		if(ret == 1){
			break;
		}
		spos--;
		character[i] = 1;
	}
	
	printf("%s\n", stack);
	return 0;
}
0