結果
問題 | No.513 宝探し2 |
ユーザー | kohei2019 |
提出日時 | 2022-05-15 13:47:08 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 409 bytes |
コンパイル時間 | 276 ms |
コンパイル使用メモリ | 82,468 KB |
実行使用メモリ | 71,484 KB |
平均クエリ数 | 58.58 |
最終ジャッジ日時 | 2024-07-26 20:26:56 |
合計ジャッジ時間 | 2,903 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 61 ms
69,676 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 63 ms
70,732 KB |
testcase_09 | AC | 63 ms
70,628 KB |
testcase_10 | WA | - |
testcase_11 | AC | 63 ms
70,352 KB |
ソースコード
def func(arg): print(arg,0) a = int(input()) if a == 0: exit() return a def sanbunntan(l,r): while l + 2 < r: c1 = l+(r-l)//3 c2 = r-(r-l)//3 if func(c1)<func(c2): r = c2 else: l = c1 val = sorted([(func(i),i) for i in range(l,r+1)])[0][1] return val x = sanbunntan(0, 100001) y = func(x)-x print(x,y) int(input())