結果
問題 |
No.2768 Password Crack
|
ユーザー |
![]() |
提出日時 | 2024-05-31 23:24:55 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,119 bytes |
コンパイル時間 | 4,375 ms |
コンパイル使用メモリ | 231,216 KB |
実行使用メモリ | 25,604 KB |
平均クエリ数 | 962.60 |
最終ジャッジ日時 | 2024-12-21 01:41:23 |
合計ジャッジ時間 | 10,751 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 10 WA * 19 |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:38:39: warning: 'f' may be used uninitialized [-Wmaybe-uninitialized] 38 | else if(res==f-1){ | ~^~ main.cpp:27:12: note: 'f' was declared here 27 | ll f; | ^
ソースコード
#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;now++;continue;} else if(now==25){ans[now]='z';break;} else{ if(res==f+1){ break; } else if(res==f-1){ ans[cnt]='a'; break; } } now++; } cnt++; } cout<<'!'<<" "<<ans<<endl; }