結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー ayaoniayaoni
提出日時 2020-12-06 02:55:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 255 ms / 5,000 ms
コード長 634 bytes
コンパイル時間 599 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 107,008 KB
最終ジャッジ日時 2024-11-08 13:26:07
合計ジャッジ時間 8,040 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 251 ms
101,632 KB
testcase_01 AC 47 ms
58,496 KB
testcase_02 AC 137 ms
87,168 KB
testcase_03 AC 200 ms
98,176 KB
testcase_04 AC 249 ms
105,856 KB
testcase_05 AC 250 ms
106,112 KB
testcase_06 AC 251 ms
105,984 KB
testcase_07 AC 254 ms
102,272 KB
testcase_08 AC 254 ms
102,016 KB
testcase_09 AC 251 ms
102,144 KB
testcase_10 AC 232 ms
102,400 KB
testcase_11 AC 242 ms
105,856 KB
testcase_12 AC 223 ms
102,272 KB
testcase_13 AC 236 ms
104,320 KB
testcase_14 AC 244 ms
107,008 KB
testcase_15 AC 225 ms
103,936 KB
testcase_16 AC 251 ms
106,112 KB
testcase_17 AC 249 ms
105,856 KB
testcase_18 AC 251 ms
105,728 KB
testcase_19 AC 251 ms
102,016 KB
testcase_20 AC 255 ms
102,144 KB
testcase_21 AC 253 ms
102,016 KB
testcase_22 AC 231 ms
102,784 KB
testcase_23 AC 241 ms
105,728 KB
testcase_24 AC 41 ms
51,968 KB
testcase_25 AC 63 ms
67,328 KB
testcase_26 AC 59 ms
64,384 KB
testcase_27 AC 53 ms
62,336 KB
testcase_28 AC 96 ms
79,360 KB
testcase_29 AC 82 ms
76,288 KB
testcase_30 AC 64 ms
67,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N = I()
L = LI()
K = I()

ok = 0
ng = max(L)+1
for _ in range(70):
    mid = (ok+ng)/2
    if sum(int(l/mid) for l in L) >= K:
        ok = mid
    else:
        ng = mid

print(ok)
0