結果

問題 No.2768 Password Crack
ユーザー miho-4miho-4
提出日時 2024-05-31 22:04:08
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 255 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 94,652 KB
平均クエリ数 1804.07
最終ジャッジ日時 2024-12-20 23:32:05
合計ジャッジ時間 10,824 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
70,524 KB
testcase_01 AC 68 ms
69,060 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 89 ms
76,880 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 125 ms
83,384 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 179 ms
94,116 KB
testcase_20 AC 184 ms
93,624 KB
testcase_21 RE -
testcase_22 AC 220 ms
93,440 KB
testcase_23 AC 101 ms
77,332 KB
testcase_24 AC 167 ms
87,364 KB
testcase_25 AC 230 ms
92,888 KB
testcase_26 AC 168 ms
93,404 KB
testcase_27 AC 205 ms
93,836 KB
testcase_28 AC 106 ms
78,104 KB
testcase_29 AC 121 ms
83,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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