結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー syunsukesyunsuke
提出日時 2019-09-23 21:04:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,815 ms / 5,000 ms
コード長 216 bytes
コンパイル時間 1,485 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 108,196 KB
最終ジャッジ日時 2024-11-08 13:01:22
合計ジャッジ時間 26,967 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 731 ms
102,144 KB
testcase_01 AC 44 ms
58,624 KB
testcase_02 AC 697 ms
87,040 KB
testcase_03 AC 1,308 ms
98,224 KB
testcase_04 AC 1,258 ms
106,240 KB
testcase_05 AC 1,236 ms
106,460 KB
testcase_06 AC 1,008 ms
106,240 KB
testcase_07 AC 1,804 ms
102,016 KB
testcase_08 AC 1,815 ms
102,144 KB
testcase_09 AC 1,402 ms
102,240 KB
testcase_10 AC 1,125 ms
103,040 KB
testcase_11 AC 1,168 ms
105,984 KB
testcase_12 AC 869 ms
102,656 KB
testcase_13 AC 1,631 ms
104,828 KB
testcase_14 AC 1,705 ms
108,196 KB
testcase_15 AC 1,233 ms
104,412 KB
testcase_16 AC 597 ms
106,200 KB
testcase_17 AC 532 ms
106,368 KB
testcase_18 AC 503 ms
106,240 KB
testcase_19 AC 550 ms
102,008 KB
testcase_20 AC 561 ms
101,888 KB
testcase_21 AC 521 ms
101,844 KB
testcase_22 AC 459 ms
102,864 KB
testcase_23 AC 485 ms
105,984 KB
testcase_24 AC 40 ms
52,096 KB
testcase_25 AC 90 ms
67,968 KB
testcase_26 AC 64 ms
63,744 KB
testcase_27 AC 57 ms
61,568 KB
testcase_28 AC 342 ms
79,308 KB
testcase_29 AC 208 ms
76,740 KB
testcase_30 AC 92 ms
68,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

H=10**9
L=0

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