結果

問題 No.305 鍵(2)
ユーザー roiti46roiti46
提出日時 2015-11-27 22:47:01
言語 Python2
(2.7.18)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 497 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 25,232 KB
平均クエリ数 80.85
最終ジャッジ日時 2024-07-16 21:47:27
合計ジャッジ時間 2,332 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

# -*- coding: utf-8 -*-
import sys,copy,math,heapq,itertools as it,fractions,re,bisect,collections as coll

ans = ""
for i in xrange(10):
    mx, k = 0, -1
    for j in xrange(10):
        tmp = "0" * (10 - i - 1) + str(j) + ans
        print tmp
        sys.stdout.flush()
        hit, res = raw_input().split()
        if res == "unlocked":
            exit()
        hit = int(hit)
        if hit > mx:
            mx = hit
            k = j 
    ans = str(k) + ans
print ans
res = raw_input()
0