結果
問題 | No.306 さいたま2008 |
ユーザー | fmhr |
提出日時 | 2015-11-28 00:04:23 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 456 bytes |
コンパイル時間 | 258 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-09-14 00:20:56 |
合計ジャッジ時間 | 30,520 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,880 KB |
testcase_01 | AC | 31 ms
10,880 KB |
testcase_02 | RE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 31 ms
10,752 KB |
testcase_16 | AC | 32 ms
10,880 KB |
testcase_17 | AC | 31 ms
10,752 KB |
testcase_18 | RE | - |
testcase_19 | AC | 31 ms
10,752 KB |
testcase_20 | AC | 31 ms
10,880 KB |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
ソースコード
# coding:utf-8 import math def main(): xa, ya = map(int, input().split()) xb, yb = map(int, input().split()) if ya > yb: xa,xb = xb,xa ya,yb = yb,ya ub = yb lb = ya mid = (lb+ub)/2 for i in range(5000000): # print(mid) if xb/(yb-mid)>xa/(mid-ya): mid = (mid+lb)/2 elif xb/(yb-mid)<xa/(mid-ya): mid = (mid+ub)/2 else: break print(mid) main()