結果
問題 | No.2768 Password Crack |
ユーザー | tobbie |
提出日時 | 2024-07-16 22:48:28 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 592 bytes |
コンパイル時間 | 1,915 ms |
コンパイル使用メモリ | 172,012 KB |
実行使用メモリ | 39,888 KB |
平均クエリ数 | 4.03 |
最終ジャッジ日時 | 2024-07-16 22:48:35 |
合計ジャッジ時間 | 6,438 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
25,196 KB |
testcase_01 | AC | 29 ms
25,220 KB |
testcase_02 | AC | 28 ms
24,568 KB |
testcase_03 | AC | 29 ms
24,836 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; #define rep(i, n) for (int i = 0; i < (int)n; i++) int main() { int N; cin >> N; vector<int> a(26, 0); vector<char> s; rep(i, 26) { string T = ""; rep(j, N) T += 'a' + i; cout << "? " << T << endl; int n; cin >> n; rep(j, n) s.push_back('a' + i); } do { string S = ""; rep(i, N) S += s[i]; cout << "? " << S << endl; int n; cin >> n; if (n == N) { cout << "! " << S << endl; break; } } while (next_permutation(s.begin(), s.end())); return 0; }