結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー lllllll88938494lllllll88938494
提出日時 2022-06-02 15:37:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,683 ms / 5,000 ms
コード長 282 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 107,904 KB
最終ジャッジ日時 2024-11-08 13:48:40
合計ジャッジ時間 24,608 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 620 ms
102,272 KB
testcase_01 AC 48 ms
58,752 KB
testcase_02 AC 657 ms
80,000 KB
testcase_03 AC 1,222 ms
96,640 KB
testcase_04 AC 1,164 ms
105,088 KB
testcase_05 AC 1,147 ms
106,496 KB
testcase_06 AC 929 ms
106,496 KB
testcase_07 AC 1,683 ms
102,016 KB
testcase_08 AC 1,681 ms
102,016 KB
testcase_09 AC 1,315 ms
102,016 KB
testcase_10 AC 1,039 ms
100,224 KB
testcase_11 AC 1,095 ms
104,064 KB
testcase_12 AC 820 ms
100,224 KB
testcase_13 AC 1,539 ms
104,576 KB
testcase_14 AC 1,591 ms
107,904 KB
testcase_15 AC 1,151 ms
104,064 KB
testcase_16 AC 551 ms
104,832 KB
testcase_17 AC 488 ms
104,448 KB
testcase_18 AC 469 ms
104,320 KB
testcase_19 AC 506 ms
102,016 KB
testcase_20 AC 481 ms
102,016 KB
testcase_21 AC 487 ms
102,016 KB
testcase_22 AC 429 ms
99,584 KB
testcase_23 AC 453 ms
103,936 KB
testcase_24 AC 41 ms
52,096 KB
testcase_25 AC 91 ms
62,080 KB
testcase_26 AC 67 ms
61,824 KB
testcase_27 AC 60 ms
60,160 KB
testcase_28 AC 326 ms
69,504 KB
testcase_29 AC 200 ms
65,280 KB
testcase_30 AC 93 ms
62,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def  cal(x):
    cnt=0
    for i in range(n):
        cnt+= ns[i] // x
    return cnt

l=0
r=10**10

for i in range(80):
    mid= (l+r) / 2
    if cal(mid) < k:
        r=mid
    else:
        l=mid

print(r)
        
0