結果
問題 | No.2352 Sharpened Knife in Fall |
ユーザー | maron8676 |
提出日時 | 2023-06-16 23:02:34 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,219 bytes |
コンパイル時間 | 615 ms |
コンパイル使用メモリ | 82,372 KB |
実行使用メモリ | 85,312 KB |
最終ジャッジ日時 | 2024-06-24 16:06:22 |
合計ジャッジ時間 | 6,791 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 43 ms
54,528 KB |
testcase_02 | WA | - |
testcase_03 | AC | 43 ms
54,144 KB |
testcase_04 | WA | - |
testcase_05 | AC | 43 ms
54,400 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
ソースコード
import math from collections import defaultdict, deque from sys import stdin readline = stdin.readline def li(): return list(map(int, readline().split())) def calc(y, R): angle = math.asin(y / R) v1 = 2 * angle * math.pi * R ** 2 / (2 * math.pi) v2 = R ** 2 * math.sin(angle) * math.cos(angle) * R ** 2 return v1 + v2 # 二分探索? R, K = li() target = math.pi * R ** 2 / (K + 1) # yが+の部分だけ求めれば十分 # 2 * sin-1(y/R)/2*pi * pi * R**2 + sin(sin-1(y/R)) * cos(sin-1(y/R)) * R**2 # print(target) rem = math.pi * R ** 2 / 2 ans = [R] while len(ans) - 1 < K // 2: low = 0 high = ans[-1] mid = (high + low) / 2 area = rem - calc(mid, R) while abs(area - target) > 10 ** (-7) * target: if area > target: low = mid else: high = mid mid = (high + low) / 2 area = rem - calc(mid, R) # print(area, mid) print(mid) rem = math.pi * R ** 2 / 2 - (len(ans) - 1) * target ans.append(mid) ans2 = [] for i in range(1, len(ans)): ans2.append(ans[i] * -1) if K % 2 == 1: ans2.append(0) for i in range(len(ans) - 1, 0, -1): ans2.append(ans[i]) for a in ans2: print(a)