結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー Ryota_PyRyota_Py
提出日時 2022-04-03 20:28:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,242 ms / 5,000 ms
コード長 690 bytes
コンパイル時間 500 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 107,008 KB
最終ジャッジ日時 2024-11-08 13:46:34
合計ジャッジ時間 32,305 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,math,collections,itertools
from collections import deque
INF = 10**18
def I(): return int(input())
def MI(): return map(int,input().split())
def LI(): return list(map(int,input().split()))
def TI(): return tuple(map(int,input().split()))
def S(): return input()
def LS(): return list(input().split())
def TS(): return tuple(input().split())
def lcm(a, b): return a * b // math.gcd(a, b)
MOD1 = 10**9+7 #500000004
MOD2 = 998244353 #499122177
sys.setrecursionlimit(10**9)

a = I()
l = LI()
k = I()
m = 10**(-9)
M = 10**9
for i in range(100):
    mid = (m+M)/2
    s = 0
    for j in range(a):
        s += l[j]//mid
    if s >= k:
        m = mid
    else:
        M = mid
print(m)
0