結果

問題 No.305 鍵(2)
ユーザー brthyyjpbrthyyjp
提出日時 2022-03-31 13:48:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 381 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 71,532 KB
平均クエリ数 86.69
最終ジャッジ日時 2024-07-17 03:07:46
合計ジャッジ時間 2,064 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
69,508 KB
testcase_01 AC 65 ms
70,164 KB
testcase_02 AC 65 ms
71,140 KB
testcase_03 AC 65 ms
69,624 KB
testcase_04 AC 67 ms
70,288 KB
testcase_05 AC 64 ms
69,980 KB
testcase_06 AC 57 ms
69,872 KB
testcase_07 AC 64 ms
69,724 KB
testcase_08 AC 64 ms
71,532 KB
testcase_09 AC 64 ms
69,732 KB
testcase_10 AC 66 ms
70,612 KB
testcase_11 AC 63 ms
70,784 KB
testcase_12 AC 65 ms
69,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def query(A):
    A = [str(a) for a in A]
    print(''.join(A), flush=True)
    c, v = map(str, input().split())
    if v == 'unlocked':
        exit()
    return int(c)

A = [0]*10
for i in range(10):
    B = [-1]*10
    for j in range(10):
        A[i] = j
        c = query(A)
        B[j] = c
    m = min(B)
    for j in range(10):
        if B[j] == m+1:
            A[i] = j
0