結果
問題 | No.306 さいたま2008 |
ユーザー | fmhr |
提出日時 | 2015-11-28 00:11:03 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 481 bytes |
コンパイル時間 | 206 ms |
コンパイル使用メモリ | 82,380 KB |
実行使用メモリ | 60,484 KB |
最終ジャッジ日時 | 2024-09-14 00:27:27 |
合計ジャッジ時間 | 2,941 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
52,012 KB |
testcase_01 | AC | 37 ms
52,124 KB |
testcase_02 | AC | 36 ms
53,560 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 37 ms
52,400 KB |
testcase_14 | AC | 36 ms
53,064 KB |
testcase_15 | AC | 36 ms
51,828 KB |
testcase_16 | AC | 36 ms
53,196 KB |
testcase_17 | AC | 37 ms
52,672 KB |
testcase_18 | AC | 37 ms
53,440 KB |
testcase_19 | AC | 35 ms
52,948 KB |
testcase_20 | AC | 36 ms
52,320 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
ソースコード
# coding:utf-8 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): if yb == mid or ya == mid: break 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()