結果

問題 No.2768 Password Crack
ユーザー イルカイルカ
提出日時 2024-06-10 18:03:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 2,542 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 92,888 KB
平均クエリ数 886.27
最終ジャッジ日時 2024-06-10 18:04:00
合計ジャッジ時間 5,644 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
71,624 KB
testcase_01 AC 60 ms
71,384 KB
testcase_02 AC 102 ms
80,984 KB
testcase_03 AC 103 ms
80,472 KB
testcase_04 AC 146 ms
89,040 KB
testcase_05 AC 67 ms
71,768 KB
testcase_06 AC 124 ms
86,872 KB
testcase_07 AC 178 ms
92,888 KB
testcase_08 AC 78 ms
72,920 KB
testcase_09 AC 144 ms
89,944 KB
testcase_10 AC 154 ms
89,432 KB
testcase_11 AC 142 ms
88,920 KB
testcase_12 AC 149 ms
88,792 KB
testcase_13 AC 149 ms
89,304 KB
testcase_14 AC 144 ms
88,792 KB
testcase_15 AC 147 ms
89,432 KB
testcase_16 AC 150 ms
89,304 KB
testcase_17 AC 157 ms
88,536 KB
testcase_18 AC 145 ms
89,432 KB
testcase_19 AC 107 ms
81,624 KB
testcase_20 AC 104 ms
81,368 KB
testcase_21 AC 144 ms
89,432 KB
testcase_22 AC 124 ms
86,640 KB
testcase_23 AC 73 ms
72,664 KB
testcase_24 AC 98 ms
80,664 KB
testcase_25 AC 141 ms
88,536 KB
testcase_26 AC 105 ms
81,112 KB
testcase_27 AC 129 ms
86,872 KB
testcase_28 AC 75 ms
72,408 KB
testcase_29 AC 84 ms
78,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 先頭から長さ4の部分文字列を確定させることを考える
# 他の部分は固定して、先頭だけaaaaからzzzzまで26通り試すことで先頭4文字に含まれる英子文字がわかる(順番はまだわからない)
# ↑でわかった英子文字でつくれる候補を全通り(4文字の場合、4種なら4!、3種なら3×(4!/2)、2種なら2×(4!/3!)+2×(4!/2!2!)、1種なら1)調べれば位置もわかる
# これを末尾まで繰り返すことで最大でも(26+36)*(100/4)クエリでできそう
import collections
import itertools
def count_match(s1, s2="gga"):
    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 = []
        if chnum==4:
            for c in cands:
                perm += list(set(["".join(p) for p in list(itertools.permutations(list(cands)+[c,]))]))
        else:
            perm = ["".join(p) for p in list(itertools.permutations(cands))]
    elif len(cands)==2:
        perm = []
        if chnum==4:
            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)))]))
        elif chnum==3:
            for c in cands:
                perm += list(set(["".join(p) for p in list(itertools.permutations(list(cands)+[c,]))]))
        else:
            perm = ["".join(p) for p in list(itertools.permutations(cands))]
    else:
        perm = [cands[0]*chnum]

    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