結果

問題 No.305 鍵(2)
ユーザー 👑 rin204rin204
提出日時 2022-01-20 06:55:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 514 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,796 KB
実行使用メモリ 79,840 KB
平均クエリ数 143.62
最終ジャッジ日時 2024-07-17 03:06:48
合計ジャッジ時間 2,149 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
68,576 KB
testcase_01 AC 64 ms
69,344 KB
testcase_02 AC 94 ms
77,408 KB
testcase_03 AC 64 ms
68,576 KB
testcase_04 AC 69 ms
69,600 KB
testcase_05 AC 72 ms
74,976 KB
testcase_06 AC 59 ms
68,432 KB
testcase_07 AC 108 ms
79,840 KB
testcase_08 AC 66 ms
68,704 KB
testcase_09 AC 65 ms
70,112 KB
testcase_10 AC 64 ms
68,960 KB
testcase_11 AC 64 ms
68,960 KB
testcase_12 AC 65 ms
68,960 KB
権限があれば一括ダウンロードができます

ソースコード

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
    lst[i] = b
print(*ans, sep="", flush = True)
input()
    
    
0