結果
| 問題 |
No.513 宝探し2
|
| コンテスト | |
| ユーザー |
maspy
|
| 提出日時 | 2020-01-29 20:46:54 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 1,287 bytes |
| コンパイル時間 | 388 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 27,992 KB |
| 平均クエリ数 | 2.92 |
| 最終ジャッジ日時 | 2024-07-16 19:20:29 |
| 合計ジャッジ時間 | 1,736 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 11 RE * 1 |
ソースコード
import sys
readline = sys.stdin.readline
# DEBUG = True
DEBUG = False
class Interactive:
def __init__(self):
self.ques_cnt = 0
self.create_data()
def create_data(self):
import random
self.x = random.randint(0,10**5)
self.y = random.randint(0,10**5)
print('created:', self.x, self.y)
def resp_ques(self, *args):
x,y = map(int,args)
d = abs(x - self.x) + abs(y - self.y)
if d == 0:
print('AC')
exit()
return '{}\n'.format(d)
def resp_ans(self, *args):
pass
if DEBUG:
interactive = Interactive()
def question(*args, offset=None):
if offset is None:
print(*args, flush=True)
else:
print(offset, *args, flush=True)
if DEBUG:
resp = interactive.resp_ques(*args)
print(resp, end='')
return resp
else:
return readline()
def answer(*args, offset=None):
if offset is None:
print(*args, flush=True)
else:
print(offset, *args, flush=True)
if DEBUG:
interactive.resp_ans(*args)
else:
exit()
U = 10 ** 6
d1 = int(question(0,0))
d2 = int(question(U,0))
y = (d1 + d2 - U) // 2
x = d1 - y
question(x,y)
maspy