結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー mlihua09mlihua09
提出日時 2020-09-01 21:16:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,146 ms / 5,000 ms
コード長 290 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 107,904 KB
最終ジャッジ日時 2024-11-08 13:25:22
合計ジャッジ時間 17,149 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 378 ms
102,272 KB
testcase_01 AC 46 ms
58,368 KB
testcase_02 AC 454 ms
87,040 KB
testcase_03 AC 833 ms
98,176 KB
testcase_04 AC 835 ms
106,112 KB
testcase_05 AC 835 ms
106,112 KB
testcase_06 AC 629 ms
106,368 KB
testcase_07 AC 1,139 ms
102,016 KB
testcase_08 AC 1,146 ms
102,016 KB
testcase_09 AC 806 ms
102,144 KB
testcase_10 AC 771 ms
102,784 KB
testcase_11 AC 797 ms
106,112 KB
testcase_12 AC 544 ms
102,528 KB
testcase_13 AC 1,028 ms
104,832 KB
testcase_14 AC 1,082 ms
107,904 KB
testcase_15 AC 719 ms
104,192 KB
testcase_16 AC 338 ms
106,112 KB
testcase_17 AC 296 ms
106,368 KB
testcase_18 AC 282 ms
106,112 KB
testcase_19 AC 310 ms
102,144 KB
testcase_20 AC 326 ms
102,016 KB
testcase_21 AC 297 ms
102,144 KB
testcase_22 AC 261 ms
102,656 KB
testcase_23 AC 275 ms
105,856 KB
testcase_24 AC 42 ms
51,968 KB
testcase_25 AC 86 ms
66,048 KB
testcase_26 AC 67 ms
63,232 KB
testcase_27 AC 59 ms
60,928 KB
testcase_28 AC 251 ms
79,744 KB
testcase_29 AC 166 ms
76,416 KB
testcase_30 AC 87 ms
66,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


N = int(input())

L = list(map(int, input().split()))

x = 0
y = 10 ** 9

K = int(input())

while x * (1 + 10 ** (-10)) < y:
    z = (x + y) / 2
    k = 0
    for l in L:
        
        k += l // z
        
    if k >= K:
        x = z
        
    else:
        y = z
        
print(x)
0