結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー syunsukesyunsuke
提出日時 2019-09-23 20:57:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,286 ms / 5,000 ms
コード長 217 bytes
コンパイル時間 446 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 108,160 KB
最終ジャッジ日時 2024-11-08 13:02:02
合計ジャッジ時間 32,931 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 858 ms
102,016 KB
testcase_01 AC 48 ms
58,368 KB
testcase_02 AC 878 ms
86,912 KB
testcase_03 AC 1,651 ms
98,048 KB
testcase_04 AC 1,560 ms
106,624 KB
testcase_05 AC 1,560 ms
106,240 KB
testcase_06 AC 1,268 ms
106,112 KB
testcase_07 AC 2,276 ms
101,888 KB
testcase_08 AC 2,286 ms
102,016 KB
testcase_09 AC 1,764 ms
102,016 KB
testcase_10 AC 1,424 ms
102,528 KB
testcase_11 AC 1,495 ms
105,856 KB
testcase_12 AC 1,106 ms
102,400 KB
testcase_13 AC 2,066 ms
104,832 KB
testcase_14 AC 2,195 ms
108,160 KB
testcase_15 AC 1,554 ms
104,192 KB
testcase_16 AC 737 ms
105,984 KB
testcase_17 AC 653 ms
106,240 KB
testcase_18 AC 634 ms
105,984 KB
testcase_19 AC 679 ms
101,888 KB
testcase_20 AC 681 ms
101,888 KB
testcase_21 AC 638 ms
102,016 KB
testcase_22 AC 567 ms
102,656 KB
testcase_23 AC 598 ms
105,856 KB
testcase_24 AC 42 ms
51,840 KB
testcase_25 AC 110 ms
68,864 KB
testcase_26 AC 78 ms
64,128 KB
testcase_27 AC 66 ms
61,312 KB
testcase_28 AC 432 ms
79,360 KB
testcase_29 AC 264 ms
76,672 KB
testcase_30 AC 115 ms
69,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
K=int(input())

H=10**9
L=0

for i in range(100):
    M=(H+L)/2
    ans=0
    for l in A:
        ans+=l//M
    if ans<K:
        H=M
    else:
        L=M
print(M)
    
0