結果

問題 No.2768 Password Crack
ユーザー もぐらもぐら
提出日時 2024-05-31 22:58:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,099 bytes
コンパイル時間 4,122 ms
コンパイル使用メモリ 232,072 KB
実行使用メモリ 39,856 KB
最終ジャッジ日時 2024-05-31 22:58:13
合計ジャッジ時間 10,773 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
#define rep(i,n) for(int i = 0; i <n; i++)
#define all(a) a.begin(),a.end()
#define SORT(a) sort(all(a));
#define MIN(a) *min_element(all(a))
#define MAX(a) *max_element(all(a))
#define SUM(a) accumulate(all(a),0LL)
using ll=long long;
using ld=long double;
using ull=unsigned long;
ll MOD=998244353;
const int dx[]={0,1,0,-1,1,-1,1,-1};const int dy[]={1,0,-1,0,1,1,-1,-1};
const string ALPHA="ABCDEFGHIJKLMNOPQRSTUVWXYZ";const string alpha="abcdefghijklmnopqrstuvwxyz";
using Graph = vector<vector<int>>;
int main(){
  cin.tie(nullptr);
  cout.tie(nullptr);
  ios::sync_with_stdio(false);
  ll N;cin>>N;
  ll cnt=0;
  string ans="";
  rep(i,N){ans+='a';}
  while(cnt!=N){
  	ll now=0;
  	ll f;
  	while(now<=25){
  		ans[cnt]=alpha[now];
  		cout<<'?'<<" "<<ans<<endl;
  		ll res;cin>>res;
  		if(now==0){f=res;continue;}
  		else if(now==25){break;}
  		else{
  			if(res==f+1){
  				break;
  			}
  			else if(res=f-1){
  				ans[cnt]='a';
  				break;
  			}
  		}
  		now++;
  	}
  	cnt++;
  }
  cout<<'!'<<" "<<ans<<endl;
}
0