結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー colognecologne
提出日時 2022-01-25 11:17:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 276 ms / 5,000 ms
コード長 477 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 115,584 KB
最終ジャッジ日時 2024-11-08 13:43:51
合計ジャッジ時間 7,780 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 220 ms
107,564 KB
testcase_01 AC 48 ms
59,136 KB
testcase_02 AC 131 ms
88,832 KB
testcase_03 AC 198 ms
101,888 KB
testcase_04 AC 276 ms
115,200 KB
testcase_05 AC 273 ms
115,200 KB
testcase_06 AC 259 ms
115,328 KB
testcase_07 AC 261 ms
107,380 KB
testcase_08 AC 261 ms
107,380 KB
testcase_09 AC 245 ms
107,648 KB
testcase_10 AC 240 ms
107,264 KB
testcase_11 AC 254 ms
110,976 KB
testcase_12 AC 224 ms
106,880 KB
testcase_13 AC 248 ms
102,144 KB
testcase_14 AC 259 ms
106,144 KB
testcase_15 AC 224 ms
106,880 KB
testcase_16 AC 233 ms
115,584 KB
testcase_17 AC 229 ms
115,584 KB
testcase_18 AC 225 ms
115,200 KB
testcase_19 AC 226 ms
107,132 KB
testcase_20 AC 225 ms
107,644 KB
testcase_21 AC 227 ms
107,004 KB
testcase_22 AC 198 ms
106,752 KB
testcase_23 AC 209 ms
110,976 KB
testcase_24 AC 42 ms
51,968 KB
testcase_25 AC 57 ms
64,512 KB
testcase_26 AC 53 ms
61,440 KB
testcase_27 AC 50 ms
60,160 KB
testcase_28 AC 93 ms
80,128 KB
testcase_29 AC 78 ms
76,544 KB
testcase_30 AC 58 ms
64,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math


def input(): return sys.stdin.readline().rstrip()


def main():
    int(input())  # N
    *L, = map(int, input().split())
    K = int(input())

    def yes(x):
        return sum(math.floor(le/x) for le in L) >= K

    ok = 0
    ng = max(L) + 1
    while abs(ok-ng) / max(ok, ng, 1) > 1e-12:
        mi = (ok+ng)/2
        if yes(mi):
            ok = mi
        else:
            ng = mi

    print((ok+ng)/2)


if __name__ == '__main__':
    main()
0