結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー nisizawanisizawa
提出日時 2017-12-09 16:17:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 301 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,260 KB
最終ジャッジ日時 2024-11-08 12:31:54
合計ジャッジ時間 41,824 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,873 ms
33,260 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 2,000 ms
19,012 KB
testcase_03 AC 3,957 ms
26,552 KB
testcase_04 AC 4,821 ms
29,328 KB
testcase_05 AC 4,555 ms
29,340 KB
testcase_06 AC 4,405 ms
29,332 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 4,841 ms
32,636 KB
testcase_10 AC 4,135 ms
27,624 KB
testcase_11 AC 4,448 ms
28,516 KB
testcase_12 AC 3,872 ms
26,948 KB
testcase_13 AC 4,770 ms
31,084 KB
testcase_14 TLE -
testcase_15 AC 4,383 ms
29,376 KB
testcase_16 AC 4,932 ms
29,332 KB
testcase_17 AC 4,050 ms
29,324 KB
testcase_18 AC 4,338 ms
29,328 KB
testcase_19 AC 3,881 ms
32,668 KB
testcase_20 AC 3,686 ms
32,640 KB
testcase_21 AC 4,307 ms
32,632 KB
testcase_22 AC 3,381 ms
27,640 KB
testcase_23 AC 3,833 ms
28,536 KB
testcase_24 AC 31 ms
10,880 KB
testcase_25 AC 138 ms
11,136 KB
testcase_26 AC 71 ms
10,880 KB
testcase_27 AC 56 ms
10,880 KB
testcase_28 AC 934 ms
14,328 KB
testcase_29 AC 494 ms
12,388 KB
testcase_30 AC 150 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ls = list(map(int, input().split()))
k = int(input())

low = 0
high = max(ls)

for i in range(100):
    mid = (low + high) / 2
    
    ct = 0
    for l in ls:
        ct += l // mid
        
    if ct >= k:
        low = mid
    else:
        high = mid

print('{:.20f}'.format(mid))
0