結果

問題 No.2768 Password Crack
ユーザー ShirotsumeShirotsume
提出日時 2024-05-31 22:02:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 250 ms / 2,000 ms
コード長 844 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 96,192 KB
平均クエリ数 1785.17
最終ジャッジ日時 2024-12-20 23:29:11
合計ジャッジ時間 8,944 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
82,376 KB
testcase_01 AC 85 ms
82,264 KB
testcase_02 AC 240 ms
95,320 KB
testcase_03 AC 234 ms
95,448 KB
testcase_04 AC 232 ms
95,832 KB
testcase_05 AC 107 ms
85,364 KB
testcase_06 AC 234 ms
95,500 KB
testcase_07 AC 234 ms
95,140 KB
testcase_08 AC 130 ms
87,364 KB
testcase_09 AC 232 ms
95,048 KB
testcase_10 AC 232 ms
95,516 KB
testcase_11 AC 235 ms
95,360 KB
testcase_12 AC 235 ms
95,500 KB
testcase_13 AC 236 ms
95,452 KB
testcase_14 AC 238 ms
95,300 KB
testcase_15 AC 233 ms
95,140 KB
testcase_16 AC 232 ms
95,716 KB
testcase_17 AC 232 ms
95,816 KB
testcase_18 AC 234 ms
96,192 KB
testcase_19 AC 178 ms
95,444 KB
testcase_20 AC 183 ms
95,368 KB
testcase_21 AC 247 ms
95,076 KB
testcase_22 AC 206 ms
95,320 KB
testcase_23 AC 111 ms
85,208 KB
testcase_24 AC 151 ms
90,968 KB
testcase_25 AC 250 ms
95,064 KB
testcase_26 AC 157 ms
91,096 KB
testcase_27 AC 230 ms
95,468 KB
testcase_28 AC 124 ms
85,336 KB
testcase_29 AC 131 ms
87,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 61 - 1
mod = 998244353
import string

n = ii()

def ask(T):
    print("?", T)
    sys.stdout.flush()
    return ii()
def ans(T):
    print("!", T)
    sys.stdout.flush()
    exit()
X = []
for i in range(n):
    S = [0] * 25
    s = ['a'] * n
    for j in range(25):
        s[i] = string.ascii_lowercase[j]
        
        S[j] = ask(''.join(s))
    if min(S) == max(S):
        X.append('z')
    else:
        if S.count(min(S)) == 1:
            X.append(string.ascii_lowercase[S.index(min(S))])
        elif S.count(max(S)) == 1:
            X.append(string.ascii_lowercase[S.index(max(S))])

ans(''.join(X))
        
0