結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー AEn
提出日時 2022-12-15 01:39:50
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 340 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 111,052 KB
最終ジャッジ日時 2025-03-03 12:03:46
合計ジャッジ時間 13,092 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other TLE * 1 -- * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
L = list(map(int, input().split()))
K = int(input())

def judge(l):
    cnt = 0
    for i in range(N):
        cnt += L[i]//l
    if cnt>=K:
        return True
    else:
        return False

ok, ng = 0, 10**10
while ng-ok>1e-10:
    mid = (ok+ng)/2
    if judge(mid):
        ok = mid
    else:
        ng = mid
print(ok)
0