結果

問題 No.2768 Password Crack
ユーザー kotatsugamekotatsugame
提出日時 2024-05-31 21:39:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 651 bytes
コンパイル時間 822 ms
コンパイル使用メモリ 65,972 KB
実行使用メモリ 25,568 KB
平均クエリ数 791.23
最終ジャッジ日時 2024-05-31 21:39:52
合計ジャッジ時間 6,768 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
25,196 KB
testcase_01 AC 25 ms
24,580 KB
testcase_02 WA -
testcase_03 AC 27 ms
24,964 KB
testcase_04 RE -
testcase_05 AC 30 ms
24,964 KB
testcase_06 WA -
testcase_07 AC 29 ms
24,580 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 RE -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 38 ms
25,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cassert>
using namespace std;
int ask(string T)
{
	cout<<"? "<<T<<endl;
	int r;cin>>r;
	return r;
}
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int N;cin>>N;
	string T(N,'a');
	int base=ask(T);
	for(int i=0;i<N;i++)
	{
		T[i]='b';
		int now=ask(T);
		assert(abs(base-now)<=1);
		if(base>now)
		{
			T[i]='a';
			continue;
		}
		if(base<now)
		{
			base=now;
			continue;
		}
		bool fn=false;
		for(char c='c';c<='y';c++)
		{
			T[i]=c;
			int now=ask(T);
			assert(base<=now&&now<=base+1);
			if(base<now)
			{
				base=now;
				fn=true;
				break;
			}
		}
		if(!fn)T[i]='z';
	}
	cout<<"! "<<T<<endl;
}
0