結果

問題 No.305 鍵(2)
ユーザー rpy3cpprpy3cpp
提出日時 2016-05-29 15:22:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 579 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,864 KB
平均クエリ数 45.23
最終ジャッジ日時 2024-07-16 10:13:38
合計ジャッジ時間 1,837 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
27,608 KB
testcase_01 AC 52 ms
27,096 KB
testcase_02 AC 47 ms
27,224 KB
testcase_03 AC 47 ms
27,352 KB
testcase_04 AC 52 ms
27,352 KB
testcase_05 AC 52 ms
27,224 KB
testcase_06 RE -
testcase_07 AC 48 ms
27,736 KB
testcase_08 AC 49 ms
27,864 KB
testcase_09 AC 51 ms
27,224 KB
testcase_10 AC 49 ms
27,480 KB
testcase_11 AC 47 ms
27,384 KB
testcase_12 AC 49 ms
27,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    answer = ''
    zeros = '0' * 10
    print(zeros)
    x, term = input().split()
    baseline = int(x)
    for pos in range(10):
        for val in range(1, 10):
            guess = '0' * pos + str(val) + '0' * (9 - pos)
            print(guess)
            x, term = input().split()
            x = int(x)
            if x == 10:
                return
            if x > baseline:
                answer = answer + str(val)
                break
            if x < baseline:
                answer = answer + '0'
                break
    print(answer)

solve()
0