結果

問題 No.1429 Simple Dowsing
ユーザー tamatotamato
提出日時 2021-03-14 14:05:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 473 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 76,024 KB
平均クエリ数 3.00
最終ジャッジ日時 2024-07-17 10:46:19
合計ジャッジ時間 2,225 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
70,500 KB
testcase_01 AC 61 ms
69,712 KB
testcase_02 AC 60 ms
69,816 KB
testcase_03 AC 63 ms
75,524 KB
testcase_04 AC 63 ms
74,844 KB
testcase_05 AC 60 ms
69,072 KB
testcase_06 AC 64 ms
75,708 KB
testcase_07 AC 64 ms
75,352 KB
testcase_08 AC 64 ms
76,024 KB
testcase_09 AC 63 ms
75,524 KB
testcase_10 AC 60 ms
70,128 KB
testcase_11 AC 64 ms
74,916 KB
testcase_12 AC 63 ms
75,396 KB
testcase_13 AC 63 ms
75,084 KB
testcase_14 AC 61 ms
70,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    print("?", 0, 0)
    sys.stdout.flush()
    d1 = int(input())
    print("?", 0, 100)
    sys.stdout.flush()
    d2 = int(input())

    for p in range(101):
        for q in range(101):
            if p**2 + q**2 == d1 and p**2 + (q-100)**2 == d2:
                print("!", p, q)
                sys.stdout.flush()
                exit()


if __name__ == '__main__':
    main()
0