結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 192 ms
103,820 KB
testcase_01 AC 42 ms
59,232 KB
testcase_02 AC 93 ms
82,084 KB
testcase_03 AC 147 ms
99,948 KB
testcase_04 AC 201 ms
115,572 KB
testcase_05 AC 193 ms
115,360 KB
testcase_06 AC 188 ms
115,848 KB
testcase_07 AC 191 ms
104,100 KB
testcase_08 AC 187 ms
104,232 KB
testcase_09 AC 191 ms
104,132 KB
testcase_10 AC 168 ms
105,684 KB
testcase_11 AC 182 ms
110,708 KB
testcase_12 AC 168 ms
104,960 KB
testcase_13 AC 184 ms
103,044 KB
testcase_14 AC 193 ms
103,528 KB
testcase_15 AC 172 ms
107,392 KB
testcase_16 AC 199 ms
115,696 KB
testcase_17 AC 197 ms
115,540 KB
testcase_18 AC 193 ms
115,492 KB
testcase_19 AC 194 ms
103,876 KB
testcase_20 AC 186 ms
103,868 KB
testcase_21 AC 194 ms
103,992 KB
testcase_22 AC 163 ms
105,148 KB
testcase_23 AC 179 ms
110,684 KB
testcase_24 AC 38 ms
53,188 KB
testcase_25 AC 43 ms
60,068 KB
testcase_26 AC 43 ms
60,112 KB
testcase_27 AC 41 ms
59,900 KB
testcase_28 AC 63 ms
70,560 KB
testcase_29 AC 52 ms
64,168 KB
testcase_30 AC 44 ms
60,512 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