結果

問題 No.305 鍵(2)
ユーザー 👑 KazunKazun
提出日時 2020-09-14 02:51:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 71,024 KB
平均クエリ数 92.62
最終ジャッジ日時 2024-07-17 02:52:43
合計ジャッジ時間 1,996 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
70,208 KB
testcase_01 AC 62 ms
69,232 KB
testcase_02 AC 62 ms
71,024 KB
testcase_03 AC 63 ms
69,412 KB
testcase_04 AC 63 ms
70,096 KB
testcase_05 AC 62 ms
70,356 KB
testcase_06 AC 57 ms
69,272 KB
testcase_07 AC 62 ms
69,480 KB
testcase_08 AC 61 ms
69,764 KB
testcase_09 AC 63 ms
69,336 KB
testcase_10 AC 65 ms
70,980 KB
testcase_11 AC 64 ms
69,620 KB
testcase_12 AC 63 ms
69,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Question(k):
    M=-1
    Y=-1
    for i in range(10):
        print("0"*k+str(i)+"0"*(9-k))
        A=Answer()

        if Y<A:
            M=i
            Y=A
    return M

def Answer():
    X,_=input().split()
    X=int(X)
    if X==10:
        exit()
    else:
        return X

T=""
for k in range(10):
    T=T+str(Question(k))

print(T)
_=Answer()
0