結果
問題 | No.68 よくある棒を切る問題 (2) |
ユーザー | norioc |
提出日時 | 2024-08-26 00:52:41 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 503 bytes |
コンパイル時間 | 381 ms |
コンパイル使用メモリ | 82,540 KB |
実行使用メモリ | 110,656 KB |
最終ジャッジ日時 | 2024-08-26 00:52:57 |
合計ジャッジ時間 | 15,408 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
N = int(input()) L = list(map(int, input().split())) Q = int(input()) K = list(map(int, input().split())) # 長さ m の棒を k 本作れるか def can(m: float, k: int) -> bool: cnt = 0 for l in L: cnt += int(l / m) return cnt >= k lmax = max(L) for k in K: lo = 0 hi = lmax ans = lo for _ in range(60): m = (lo + hi) / 2 if can(m, k): ans = max(ans, m) lo = m else: hi = m print(f'{ans:.10f}')