結果
問題 | No.2352 Sharpened Knife in Fall |
ユーザー | naut3 |
提出日時 | 2023-06-18 03:17:06 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 608 bytes |
コンパイル時間 | 217 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 16,384 KB |
最終ジャッジ日時 | 2024-06-25 15:45:13 |
合計ジャッジ時間 | 9,568 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
16,384 KB |
testcase_01 | AC | 32 ms
10,752 KB |
testcase_02 | AC | 32 ms
10,752 KB |
testcase_03 | AC | 32 ms
10,752 KB |
testcase_04 | TLE | - |
testcase_05 | AC | 31 ms
10,880 KB |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
import math R, K = map(int, input().split()) PI = math.pi for i in range(K): S = PI * R * R * (i+1) / (K+1) ok = -R ng = R while ng - ok > 0.000001: h = (ok + ng) / 2 if h < 0: theta = 2 * math.acos(abs(h) / R) else: theta = 2 * (PI - math.acos(abs(h) / R)) T = PI * R * R * theta / (2 * PI) if h < 0: T -= math.sqrt(R * R - h * h) * abs(h) else: T += math.sqrt(R * R - h * h) * abs(h) if S < T: ng = h else: ok = h print("{:.7f}".format(ok))