結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | rpy3cpp |
提出日時 | 2015-07-21 23:20:02 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 495 bytes |
コンパイル時間 | 156 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 39,632 KB |
最終ジャッジ日時 | 2024-07-08 11:39:43 |
合計ジャッジ時間 | 15,398 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 97 ms
33,180 KB |
testcase_01 | AC | 25 ms
10,880 KB |
testcase_02 | AC | 520 ms
18,936 KB |
testcase_03 | AC | 969 ms
26,488 KB |
testcase_04 | AC | 1,257 ms
29,388 KB |
testcase_05 | AC | 1,232 ms
29,516 KB |
testcase_06 | AC | 1,333 ms
29,380 KB |
testcase_07 | AC | 1,391 ms
32,436 KB |
testcase_08 | AC | 1,372 ms
32,432 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
from math import floor, sqrt def read_data(): N = int(input()) Ls = list(map(int, input().split())) K = int(input()) return N, Ls, K def solve(N, Ls, K): eps = 10**-10 lower = max(Ls)/K - eps upper = max(Ls) + eps while upper - lower > eps: mid = sqrt(upper * lower) if sum(floor(L/mid) for L in Ls) >= K: lower = mid else: upper = mid return (upper + lower) / 2 N, Ls, K = read_data() print(solve(N, Ls, K))