結果
| 問題 | No.3018 目隠し宝探し | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2025-01-25 15:04:38 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 932 bytes | 
| コンパイル時間 | 1,012 ms | 
| コンパイル使用メモリ | 82,176 KB | 
| 実行使用メモリ | 76,528 KB | 
| 平均クエリ数 | 2.59 | 
| 最終ジャッジ日時 | 2025-01-25 23:40:39 | 
| 合計ジャッジ時間 | 4,832 ms | 
| ジャッジサーバーID (参考情報) | judge5 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 1 | 
| other | AC * 14 WA * 7 | 
ソースコード
H, W = map(int, input().split())
if (H, W) == (1,1):
    print(f'! {1} {1}', flush=True)
    exit()
print(f'? {1} {1}', flush=True)
d = int(input())
possible = []
for i in range(1, H+1):
    for j in range(1, W+1):
        if (i-1)**2 + (j-1)**2 == d:
            possible.append((i, j))
if len(possible) == 1:
    ansi, ansj = possible[0]
    print(f'! {ansi} {ansj}', flush=True)
    exit()
if H < W:
    print(f'? {1} {W}', flush=True)
    d = int(input())
    possible2 = []
    for i, j in possible:
        if (i-1)**2 + (W-j)**2 == d:
            possible2.append((i, j))
    ansi, ansj = possible[0]
    print(f'! {ansi} {ansj}', flush=True)
    exit()
else:
    print(f'? {H} {1}', flush=True)
    d = int(input())
    possible2 = []
    for i, j in possible:
        if (H-i)**2 + (j-1)**2 == d:
            possible2.append((i, j))
    ansi, ansj = possible[0]
    print(f'! {ansi} {ansj}', flush=True)
    exit()
            
            
            
        