結果
問題 | No.513 宝探し2 |
ユーザー | lloyz |
提出日時 | 2022-11-06 00:44:20 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 367 bytes |
コンパイル時間 | 95 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 27,480 KB |
平均クエリ数 | 27.50 |
最終ジャッジ日時 | 2024-07-19 17:25:56 |
合計ジャッジ時間 | 2,509 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
27,096 KB |
testcase_01 | AC | 52 ms
27,096 KB |
testcase_02 | AC | 52 ms
27,352 KB |
testcase_03 | AC | 53 ms
27,096 KB |
testcase_04 | AC | 53 ms
27,096 KB |
testcase_05 | RE | - |
testcase_06 | AC | 54 ms
27,096 KB |
testcase_07 | AC | 53 ms
27,480 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 52 ms
27,096 KB |
testcase_11 | AC | 52 ms
27,352 KB |
ソースコード
xl, xr = 0, 100000 while xr - xl > 1: mid = (xr + xl) // 2 print(f"{xl} {0}") dl = int(input()) print(f"{xr} {0}") dr = int(input()) if dl < dr: xr = mid else: xl = mid print(f"{xl} {0}") dl = int(input()) print(f"{xr} {0}") dr = int(input()) if dl < dr: x = xl y = dl else: x = xr y = dr print(f"{x} {y}")