結果

問題 No.305 鍵(2)
ユーザー niyarinniyarin
提出日時 2016-06-01 11:36:46
言語 Python2
(2.7.18)
結果
RE  
実行時間 -
コード長 602 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 25,616 KB
平均クエリ数 44.46
最終ジャッジ日時 2024-07-16 10:15:11
合計ジャッジ時間 2,300 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 AC 30 ms
24,976 KB
testcase_05 AC 32 ms
24,592 KB
testcase_06 AC 30 ms
25,232 KB
testcase_07 AC 29 ms
25,232 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 30 ms
25,232 KB
testcase_11 AC 30 ms
25,616 KB
testcase_12 AC 30 ms
24,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
l = list("0000000000")
while True:
    print "".join(l)
    sys.stdout.flush()
    x,state = raw_input().split(" ")
    x = int(x)
    if (state == "unlocked"):
        break

    new_l = []
    for i in range(10):
        _l = [] + l
        _l[i] = str((int(l[i]) + 1 ) % 10)
        print "".join(_l)
        sys.stdout.flush()
        y,state = raw_input().split(" ")
        y = int(y)
        if (x == y ):
            new_l.append(str((int(_l[i]) + 1 ) % 10 ))
        elif (x < y ):
            new_l.append(_l[i])
        else:
            new_l.append(l[i])
    l = new_l
        
0