結果

問題 No.2768 Password Crack
コンテスト
ユーザー のーと
提出日時 2024-07-17 00:46:47
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 682 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 445 ms
コンパイル使用メモリ 85,376 KB
実行使用メモリ 100,784 KB
平均クエリ数 804.70
最終ジャッジ日時 2026-03-31 15:20:49
合計ジャッジ時間 4,419 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge3_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#flush=True
N=int(input())
D=dict()
alp="abcdefghijklmnopqrstuvwxyz"
skip=set()
ans=["." for i in range(N)]

print("?","a"*N,flush=True)
cnt_a=int(input())
print("?","b"*N,flush=True)
cnt_b=int(input())

letters=set()
for i in range(26):
	print("?",alp[i]*N,flush=True)
	n=int(input())
	if n>0:
		letters.add(alp[i])

for i in range(26):
	for j in range(N):
		if alp[i] not in letters or j in skip:
			continue
		if i==0:
		    L=["b" for k in range(N)]
		else:
		    L=["a" for k in range(N)]			
		L[j]=alp[i]
		print("?","".join(L),flush=True)
		n=int(input())
		if (i==0 and n==cnt_b+1) or (i>0 and n==cnt_a+1):
			ans[j]=alp[i]
			skip.add(j)

print("!","".join(ans),flush=True)
0