結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー cmycmy
提出日時 2023-06-04 10:37:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 168 ms / 5,000 ms
コード長 458 bytes
コンパイル時間 440 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 115,904 KB
最終ジャッジ日時 2024-06-09 03:51:34
合計ジャッジ時間 6,273 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
104,316 KB
testcase_01 AC 34 ms
58,964 KB
testcase_02 AC 79 ms
81,128 KB
testcase_03 AC 121 ms
100,284 KB
testcase_04 AC 168 ms
115,476 KB
testcase_05 AC 166 ms
115,292 KB
testcase_06 AC 166 ms
115,520 KB
testcase_07 AC 163 ms
103,728 KB
testcase_08 AC 163 ms
104,368 KB
testcase_09 AC 164 ms
104,112 KB
testcase_10 AC 143 ms
105,340 KB
testcase_11 AC 155 ms
110,664 KB
testcase_12 AC 140 ms
104,436 KB
testcase_13 AC 155 ms
103,168 KB
testcase_14 AC 159 ms
103,296 KB
testcase_15 AC 148 ms
107,484 KB
testcase_16 AC 168 ms
115,740 KB
testcase_17 AC 166 ms
115,536 KB
testcase_18 AC 167 ms
115,904 KB
testcase_19 AC 163 ms
104,000 KB
testcase_20 AC 163 ms
103,996 KB
testcase_21 AC 163 ms
103,716 KB
testcase_22 AC 144 ms
105,132 KB
testcase_23 AC 154 ms
110,708 KB
testcase_24 AC 32 ms
53,112 KB
testcase_25 AC 38 ms
61,124 KB
testcase_26 AC 36 ms
59,816 KB
testcase_27 AC 35 ms
60,332 KB
testcase_28 AC 54 ms
68,184 KB
testcase_29 AC 43 ms
64,824 KB
testcase_30 AC 36 ms
60,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import log2


def judge(x):
    cnt = 0
    for li in L:
        cnt += int(li / x)
    return cnt >= K


def main():
    ok = 1e-9
    ng = 10**9+1
    # 許容誤差
    error = 10**(-9)

    for _ in range(int(log2(abs(ok - ng)/error)) + 2):
        mid = (ok + ng) / 2
        if judge(mid):
            ok = mid
        else:
            ng = mid
    return ok


N = int(input())
*L, = map(int, input().split())
K = int(input())
print(main())
0