結果

問題 No.2768 Password Crack
ユーザー miho-4miho-4
提出日時 2024-05-31 22:07:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 223 ms / 2,000 ms
コード長 506 bytes
コンパイル時間 443 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 94,656 KB
平均クエリ数 663.87
最終ジャッジ日時 2024-12-20 23:38:39
合計ジャッジ時間 6,494 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
72,476 KB
testcase_01 AC 70 ms
72,368 KB
testcase_02 AC 84 ms
79,492 KB
testcase_03 AC 92 ms
84,076 KB
testcase_04 AC 158 ms
90,520 KB
testcase_05 AC 75 ms
71,452 KB
testcase_06 AC 87 ms
78,096 KB
testcase_07 AC 108 ms
79,672 KB
testcase_08 AC 96 ms
73,008 KB
testcase_09 AC 201 ms
93,204 KB
testcase_10 AC 171 ms
90,596 KB
testcase_11 AC 178 ms
93,720 KB
testcase_12 AC 185 ms
89,968 KB
testcase_13 AC 223 ms
94,116 KB
testcase_14 AC 160 ms
91,032 KB
testcase_15 AC 162 ms
90,420 KB
testcase_16 AC 181 ms
93,692 KB
testcase_17 AC 177 ms
93,420 KB
testcase_18 AC 167 ms
89,976 KB
testcase_19 AC 106 ms
81,060 KB
testcase_20 AC 102 ms
79,492 KB
testcase_21 AC 150 ms
89,900 KB
testcase_22 AC 152 ms
94,656 KB
testcase_23 AC 79 ms
71,376 KB
testcase_24 AC 98 ms
78,744 KB
testcase_25 AC 173 ms
93,764 KB
testcase_26 AC 103 ms
79,416 KB
testcase_27 AC 149 ms
88,260 KB
testcase_28 AC 78 ms
71,492 KB
testcase_29 AC 83 ms
71,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N=int(input())
ans=["a"]*N
d=defaultdict(int)

for i in range(26):
  t=chr(97+i)*N
  print("?",t,flush=1)
  n=int(input())
  d[chr(97+i)]=n

for i in range(N):
  x=0
  tmp=0
  flag=0
  for j in range(26):
    if d[chr(97+j)]==0:
      continue
    ans[i]=chr(97+j)
    t="".join(ans)
    print("?",t,flush=1)
    n=int(input())
    if n>x:
      x=n
      tmp=j
      if flag:
        break
      flag=1
  ans[i]=chr(97+tmp)
  d[chr(97+tmp)]-=1

print("!","".join(ans))
0