結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
71,256 KB
testcase_01 AC 67 ms
69,864 KB
testcase_02 AC 69 ms
70,428 KB
testcase_03 AC 67 ms
70,900 KB
testcase_04 AC 65 ms
70,180 KB
testcase_05 AC 66 ms
70,012 KB
testcase_06 AC 61 ms
69,256 KB
testcase_07 AC 65 ms
69,900 KB
testcase_08 AC 67 ms
70,432 KB
testcase_09 AC 66 ms
69,832 KB
testcase_10 AC 66 ms
69,820 KB
testcase_11 AC 68 ms
70,436 KB
testcase_12 AC 67 ms
71,268 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