結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー rkyiolklorkyiolklo
提出日時 2020-04-20 22:30:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,398 ms / 5,000 ms
コード長 257 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 33,264 KB
最終ジャッジ日時 2024-11-08 13:18:21
合計ジャッジ時間 68,439 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,585 ms
33,264 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 1,231 ms
19,008 KB
testcase_03 AC 2,362 ms
26,556 KB
testcase_04 AC 2,950 ms
29,336 KB
testcase_05 AC 2,923 ms
29,332 KB
testcase_06 AC 2,885 ms
29,204 KB
testcase_07 AC 3,242 ms
32,520 KB
testcase_08 AC 3,398 ms
32,504 KB
testcase_09 AC 3,013 ms
32,512 KB
testcase_10 AC 2,747 ms
27,752 KB
testcase_11 AC 2,715 ms
28,388 KB
testcase_12 AC 2,386 ms
26,824 KB
testcase_13 AC 2,984 ms
31,004 KB
testcase_14 AC 3,111 ms
31,920 KB
testcase_15 AC 2,526 ms
29,376 KB
testcase_16 AC 2,486 ms
29,208 KB
testcase_17 AC 2,407 ms
29,192 KB
testcase_18 AC 2,395 ms
29,200 KB
testcase_19 AC 2,359 ms
32,512 KB
testcase_20 AC 2,399 ms
32,512 KB
testcase_21 AC 2,427 ms
32,504 KB
testcase_22 AC 2,194 ms
27,408 KB
testcase_23 AC 2,417 ms
28,536 KB
testcase_24 AC 31 ms
10,752 KB
testcase_25 AC 96 ms
11,136 KB
testcase_26 AC 55 ms
10,880 KB
testcase_27 AC 48 ms
10,752 KB
testcase_28 AC 553 ms
14,200 KB
testcase_29 AC 294 ms
12,288 KB
testcase_30 AC 101 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
ls=list(map(int,input().split()))
k=int(input())
low=0
high=max(ls)
for i in range(61):
    mid= (high+low)/2
    ct=0
    for l in ls:
        ct+=l//mid 
    if ct>=k:
        low=mid 
    else:
        high=mid
print('{:.20f}'.format(mid))
0