結果

問題 No.2768 Password Crack
ユーザー イルカイルカ
提出日時 2024-06-10 17:56:24
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 2,171 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 94,492 KB
平均クエリ数 885.40
最終ジャッジ日時 2024-06-10 17:56:33
合計ジャッジ時間 7,146 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
72,388 KB
testcase_01 RE -
testcase_02 AC 117 ms
81,984 KB
testcase_03 AC 95 ms
81,608 KB
testcase_04 AC 139 ms
90,440 KB
testcase_05 AC 64 ms
72,880 KB
testcase_06 AC 111 ms
87,476 KB
testcase_07 AC 145 ms
93,780 KB
testcase_08 RE -
testcase_09 AC 130 ms
90,472 KB
testcase_10 AC 157 ms
90,356 KB
testcase_11 AC 125 ms
89,904 KB
testcase_12 AC 129 ms
89,536 KB
testcase_13 AC 130 ms
90,004 KB
testcase_14 AC 128 ms
90,996 KB
testcase_15 AC 143 ms
89,680 KB
testcase_16 AC 150 ms
90,244 KB
testcase_17 AC 163 ms
89,408 KB
testcase_18 AC 136 ms
90,680 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 139 ms
85,980 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 129 ms
89,344 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 88 ms
73,196 KB
testcase_29 AC 85 ms
79,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 先頭から長さ4の部分文字列を確定させることを考える
# 他の部分は固定して、先頭だけaaaaからzzzzまで26通り試すことで先頭4文字に含まれる英子文字がわかる(順番はまだわからない)
# ↑でわかった英子文字でつくれる候補を全通り(4種なら4!、3種なら3×(4!/2)、2種なら2×(4!/3!)+2×(4!/2!2!)、1種なら1)調べれば位置もわかる
# これを末尾まで繰り返すことで最大でも(26+36)*(100/4)=1300クエリでできそう
import collections
import itertools
# テスト用関数
def count_match(s1, s2="hffhhwuuorfbwuobfeqpifpefqnp"):
    cnt = 0
    for i in range(len(s1)):
        if s1[i]==s2[i]:
            cnt += 1
    return cnt

N = int(input())
abc = [chr(ord("a")+i) for i in range(26)]
s = "x"*N
for i in range((N+3)//4):
    if N%4!=0 and i==(N+3)//4-1:
        chnum = N%4
    else:
        chnum = 4
    r1 = {}
    for ch in abc:
        s = s[:4*i] + ch*chnum + s[4*(i+1):]
        print("? "+s)
        r1[ch] = int(input())
        #r1[ch] = count_match(s)
    matched = collections.Counter(r1.values()).most_common()

    cands = []
    for c in matched[1:]:
        for k, v in r1.items():
            if c[0]==v:
                cands.append(k)
    
    if len(cands)==4:
        perm = ["".join(p) for p in list(itertools.permutations(cands))]
    elif len(cands)==3:
        perm = []
        for c in cands:
            perm += list(set(["".join(p) for p in list(itertools.permutations(list(cands)+[c,]))]))
    elif len(cands)==2:
        perm = []
        for c in cands:
            perm += list(set(["".join(p) for p in list(itertools.permutations(list(cands)+[c,c,]))]))
        perm += list(set(["".join(p) for p in list(itertools.permutations(list(cands)+list(cands)))]))
    else:
        perm = [cands[0]*4]

    ans = ""
    max_match = 0
    for p in perm:
        print("? "+s[:4*i] + p + s[4*(i+1):])
        matched = int(input())
        #matched = count_match(s[:4*i] + p + s[4*(i+1):])
        if matched > max_match:
            ans = p
            max_match = matched
    s = s[:4*i] + ans + s[4*(i+1):]

print("! "+s)
0