結果
問題 | No.514 宝探し3 |
ユーザー | c-yan |
提出日時 | 2020-11-24 00:18:45 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 211 bytes |
コンパイル時間 | 244 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 27,480 KB |
平均クエリ数 | 2.75 |
最終ジャッジ日時 | 2024-07-17 07:26:26 |
合計ジャッジ時間 | 3,197 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 53 ms
27,352 KB |
testcase_06 | WA | - |
testcase_07 | AC | 53 ms
27,352 KB |
testcase_08 | AC | 52 ms
27,224 KB |
testcase_09 | AC | 54 ms
26,968 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
def query(x, y): print(x, y) result = int(input()) if result == 0: exit() return result a = query(0, 0) b = query(1000000000, 0) AX = (1000000000 - a + b) // 2 AY = a - AX query(AX, AY)