結果

問題 No.305 鍵(2)
ユーザー 👑 rin204rin204
提出日時 2022-01-20 06:54:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 514 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 79,968 KB
平均クエリ数 107.15
最終ジャッジ日時 2024-05-02 20:11:29
合計ジャッジ時間 3,669 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
68,192 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 65 ms
68,192 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = 10

for i in range(1 << n):
    print(bin(i)[2:].zfill(n), flush = True)
    x, l = input().split()
    if l[0] == "u":
        exit()
    if x == "0":
        bit = bin(i)[2:].zfill(n)
        break

lst = list(bit)
ans = [0] * n
for i in range(n):
    b = lst[i]
    for j in range(n):
        lst[i] = str(j)
        print(*lst, sep="", flush = True)
        x = input()
        if x[0] == "1":
            ans[i] = str(j)
            break
    ans[i] = b
print(*ans, sep="", flush = True)
input()
    
    
0