結果
問題 | No.2768 Password Crack |
ユーザー | kaede2020 |
提出日時 | 2024-05-31 22:22:04 |
言語 | C++23(gcc13) (gcc 13.2.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 982 bytes |
コンパイル時間 | 7,824 ms |
コンパイル使用メモリ | 335,548 KB |
実行使用メモリ | 38,960 KB |
平均クエリ数 | 3.93 |
最終ジャッジ日時 | 2024-05-31 22:22:17 |
合計ジャッジ時間 | 11,863 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
24,428 KB |
testcase_01 | AC | 26 ms
24,580 KB |
testcase_02 | AC | 25 ms
24,836 KB |
testcase_03 | AC | 25 ms
25,220 KB |
testcase_04 | TLE | - |
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 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #include <atcoder/all> using namespace atcoder; #define ll long long #define rep(i, n) for (ll i = 0; i < (ll)(n); i++) //using mint = modint998244353; const int dx[4]={0,1,0,-1}; const int dy[4]={1,0,-1,0}; int n; int main(){ cin>>n; string ans=""; rep(i,26){ string s=""; rep(j,n)s.push_back(char('a'+i)); cout<<"? "<<s<<endl; int x; cin>>x; rep(j,x)ans.push_back(char('a'+i)); } cout<<"? "<<ans<<endl; int x; cin>>x; int now=x; while(x!=n){ rep(i,n-1){ for(int j=i+1;j<n;j++){ string t=ans; swap(t[i],t[j]); cout<<"? "<<t<<endl; cin>>now; if(x<now){ ans=t; x=now; } if(x==n)break; } } if(x==n)break; } cout<<"! "<<ans<<endl; return 0; }