結果

問題 No.2768 Password Crack
ユーザー kotatsugamekotatsugame
提出日時 2024-05-31 21:43:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 674 bytes
コンパイル時間 653 ms
コンパイル使用メモリ 65,344 KB
実行使用メモリ 25,604 KB
平均クエリ数 885.00
最終ジャッジ日時 2024-05-31 21:43:33
合計ジャッジ時間 4,123 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
25,196 KB
testcase_01 AC 25 ms
24,964 KB
testcase_02 AC 96 ms
24,580 KB
testcase_03 AC 27 ms
24,836 KB
testcase_04 AC 63 ms
24,836 KB
testcase_05 AC 31 ms
25,220 KB
testcase_06 AC 82 ms
24,836 KB
testcase_07 AC 29 ms
25,220 KB
testcase_08 AC 35 ms
25,220 KB
testcase_09 AC 61 ms
24,964 KB
testcase_10 AC 66 ms
25,220 KB
testcase_11 AC 64 ms
25,092 KB
testcase_12 AC 66 ms
25,220 KB
testcase_13 AC 67 ms
24,964 KB
testcase_14 AC 64 ms
25,220 KB
testcase_15 AC 58 ms
24,836 KB
testcase_16 AC 63 ms
24,808 KB
testcase_17 AC 62 ms
24,836 KB
testcase_18 AC 61 ms
24,964 KB
testcase_19 AC 44 ms
25,604 KB
testcase_20 AC 41 ms
24,580 KB
testcase_21 AC 62 ms
25,220 KB
testcase_22 AC 55 ms
25,208 KB
testcase_23 AC 33 ms
25,220 KB
testcase_24 AC 42 ms
24,964 KB
testcase_25 AC 62 ms
25,220 KB
testcase_26 AC 43 ms
25,092 KB
testcase_27 AC 55 ms
24,836 KB
testcase_28 AC 35 ms
24,836 KB
testcase_29 AC 37 ms
24,452 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';
			base++;
		}
	}
	cout<<"! "<<T<<endl;
}
0