結果

問題 No.2768 Password Crack
ユーザー tnakao0123tnakao0123
提出日時 2024-06-01 12:39:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 813 bytes
コンパイル時間 426 ms
コンパイル使用メモリ 43,972 KB
実行使用メモリ 25,476 KB
平均クエリ数 881.67
最終ジャッジ日時 2024-06-01 12:39:16
合計ジャッジ時間 3,988 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
25,452 KB
testcase_01 AC 22 ms
24,836 KB
testcase_02 AC 95 ms
25,220 KB
testcase_03 AC 23 ms
25,476 KB
testcase_04 AC 60 ms
24,836 KB
testcase_05 AC 28 ms
24,964 KB
testcase_06 AC 59 ms
25,220 KB
testcase_07 AC 28 ms
24,580 KB
testcase_08 AC 34 ms
24,964 KB
testcase_09 AC 58 ms
24,964 KB
testcase_10 AC 64 ms
24,964 KB
testcase_11 AC 60 ms
25,220 KB
testcase_12 AC 64 ms
24,964 KB
testcase_13 AC 66 ms
24,836 KB
testcase_14 AC 61 ms
25,220 KB
testcase_15 AC 56 ms
25,220 KB
testcase_16 AC 63 ms
24,964 KB
testcase_17 AC 60 ms
24,580 KB
testcase_18 AC 58 ms
24,964 KB
testcase_19 AC 42 ms
24,964 KB
testcase_20 AC 42 ms
25,220 KB
testcase_21 AC 57 ms
24,964 KB
testcase_22 AC 52 ms
25,220 KB
testcase_23 AC 31 ms
24,580 KB
testcase_24 AC 40 ms
25,220 KB
testcase_25 AC 60 ms
24,964 KB
testcase_26 AC 39 ms
25,220 KB
testcase_27 AC 52 ms
24,836 KB
testcase_28 AC 33 ms
25,208 KB
testcase_29 AC 35 ms
24,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2768.cc:  No.2768 Password Crack - yukicoder
 */

#include<cstdio>
#include<algorithm>
 
using namespace std;

/* constant */

const int MAX_N = 100;

/* typedef */

/* global variables */

char s[MAX_N + 4];

/* subroutines */

int query(char s[]) {
  printf("? %s\n", s); fflush(stdout);

  int r;
  scanf("%d", &r);
  return r;
}

/* main */

int main() {
  int n;
  scanf("%d", &n);

  fill(s, s + n, 'a');
  int an = query(s);

  if (an < n) {
    for (int i = 0; i < n; i++) {
      char c = 'b';
      for (; c < 'z'; c++) {
	s[i] = c;
	int r = query(s);
	if (r < i + an) { c = 'a'; break; }
	if (r > i + an) break;
      }
      s[i] = c;
      if (c == 'a') an--;
    }
  }

  printf("! %s\n", s); fflush(stdout);
  //for (int i = 0; i < 1000000000; i++);
  
  return 0;
}
0