結果

問題 No.513 宝探し2
ユーザー nebukuro09nebukuro09
提出日時 2017-05-05 22:38:20
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 257 ms / 2,000 ms
コード長 638 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 77,216 KB
実行使用メモリ 142,212 KB
平均クエリ数 3.08
最終ジャッジ日時 2024-07-17 00:58:00
合計ジャッジ時間 4,140 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 187 ms
107,984 KB
testcase_01 AC 230 ms
124,672 KB
testcase_02 AC 245 ms
138,572 KB
testcase_03 AC 204 ms
112,856 KB
testcase_04 AC 241 ms
135,108 KB
testcase_05 AC 240 ms
123,072 KB
testcase_06 AC 240 ms
128,628 KB
testcase_07 AC 257 ms
142,212 KB
testcase_08 AC 178 ms
107,868 KB
testcase_09 AC 224 ms
125,096 KB
testcase_10 AC 256 ms
142,036 KB
testcase_11 AC 221 ms
124,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import random

N = 100001
print 0, 0
sys.stdout.flush()
d = int(raw_input())
s = set()
for r in xrange(N):
    c = d - r
    if c < 0:
        continue
    s.add((r, c))

while len(s) > 1:
    r, c = random.sample(s, 1)[0]
    print r, c
    sys.stdout.flush()
    d = int(raw_input())
    new_s = set()
    for dr in xrange(-d, d+1):
        nr = r + dr
        nc = c + d - abs(dr)
        if nr >= 0 and nr < N and nc >= 0 and nc < N:
            new_s.add((nr, nc))
        nc = c - d + abs(dr)
        if nr >= 0 and nr < N and nc >= 0 and nc < N:
            new_s.add((nr, nc))
    s &= new_s

r, c = s.pop()
print r, c
0