結果

問題 No.305 鍵(2)
ユーザー yansi819yansi819
提出日時 2024-05-21 11:09:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 356 bytes
コンパイル時間 436 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 69,856 KB
平均クエリ数 92.62
最終ジャッジ日時 2024-12-20 18:08:58
合計ジャッジ時間 2,646 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
69,856 KB
testcase_01 AC 72 ms
69,216 KB
testcase_02 AC 73 ms
69,288 KB
testcase_03 AC 72 ms
69,344 KB
testcase_04 AC 72 ms
69,472 KB
testcase_05 AC 73 ms
69,472 KB
testcase_06 AC 65 ms
67,936 KB
testcase_07 AC 72 ms
69,472 KB
testcase_08 AC 75 ms
69,088 KB
testcase_09 AC 74 ms
69,628 KB
testcase_10 AC 72 ms
69,600 KB
testcase_11 AC 71 ms
68,980 KB
testcase_12 AC 75 ms
69,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A = [-1] * 10
for i in range(10):
    lst = []
    for j in range(10):
        B = [0] * 10
        B[i] = j
        print("".join([str(k) for k in B]), flush=True)
        ans = input().split()
        if ans[0] == "10":
            exit()
        lst.append(int(ans[0]))
    A[i] = lst.index(max(lst))    
print("".join([str(k) for k in A]), flush=True)
0