結果

問題 No.2768 Password Crack
ユーザー hato336hato336
提出日時 2024-05-31 22:01:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 306 ms / 2,000 ms
コード長 665 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 108,004 KB
平均クエリ数 770.90
最終ジャッジ日時 2024-05-31 22:01:26
合計ジャッジ時間 9,387 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
102,484 KB
testcase_01 AC 155 ms
102,120 KB
testcase_02 AC 154 ms
102,120 KB
testcase_03 AC 177 ms
105,480 KB
testcase_04 AC 264 ms
107,072 KB
testcase_05 AC 177 ms
105,708 KB
testcase_06 AC 173 ms
105,704 KB
testcase_07 AC 182 ms
105,676 KB
testcase_08 AC 188 ms
105,716 KB
testcase_09 AC 261 ms
106,640 KB
testcase_10 AC 306 ms
107,220 KB
testcase_11 AC 281 ms
108,004 KB
testcase_12 AC 275 ms
106,140 KB
testcase_13 AC 273 ms
106,784 KB
testcase_14 AC 268 ms
107,092 KB
testcase_15 AC 250 ms
106,232 KB
testcase_16 AC 268 ms
106,816 KB
testcase_17 AC 274 ms
107,220 KB
testcase_18 AC 270 ms
107,056 KB
testcase_19 AC 211 ms
106,344 KB
testcase_20 AC 199 ms
105,828 KB
testcase_21 AC 267 ms
106,904 KB
testcase_22 AC 268 ms
106,280 KB
testcase_23 AC 181 ms
105,984 KB
testcase_24 AC 208 ms
105,832 KB
testcase_25 AC 251 ms
106,332 KB
testcase_26 AC 198 ms
106,052 KB
testcase_27 AC 252 ms
106,792 KB
testcase_28 AC 184 ms
105,484 KB
testcase_29 AC 191 ms
106,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
n = int(input())
print('?','z'*n,flush=True)
z = int(input())
if z == n:
    print('!','z'*n,flush=True)
    exit()
ans = ['' for i in range(n)]

for i in range(n):
    temp = ['z' for i in range(n)]
    for j in range(25):
        temp[i] = chr(j + ord('a'))
        print('?',''.join(temp),flush=True)
        x = int(input())
        if x == z-1:
            ans[i] = 'z'
            break
        if x == z +1:
            ans[i] = temp[i]
            break
print('!',''.join(ans))

            
    
   
0