結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー ntudantuda
提出日時 2024-02-26 20:39:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,432 ms / 5,000 ms
コード長 320 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 116,936 KB
最終ジャッジ日時 2024-09-29 11:44:52
合計ジャッジ時間 23,447 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,432 ms
114,900 KB
testcase_01 AC 40 ms
57,980 KB
testcase_02 AC 415 ms
88,804 KB
testcase_03 AC 748 ms
103,464 KB
testcase_04 AC 935 ms
112,328 KB
testcase_05 AC 949 ms
111,756 KB
testcase_06 AC 912 ms
112,320 KB
testcase_07 AC 1,010 ms
104,752 KB
testcase_08 AC 1,029 ms
116,540 KB
testcase_09 AC 1,038 ms
116,548 KB
testcase_10 AC 852 ms
114,536 KB
testcase_11 AC 911 ms
115,356 KB
testcase_12 AC 869 ms
116,108 KB
testcase_13 AC 1,147 ms
104,540 KB
testcase_14 AC 1,005 ms
107,748 KB
testcase_15 AC 877 ms
104,016 KB
testcase_16 AC 812 ms
112,296 KB
testcase_17 AC 759 ms
111,912 KB
testcase_18 AC 419 ms
112,508 KB
testcase_19 AC 559 ms
116,936 KB
testcase_20 AC 514 ms
116,920 KB
testcase_21 AC 514 ms
116,932 KB
testcase_22 AC 377 ms
114,956 KB
testcase_23 AC 407 ms
114,056 KB
testcase_24 AC 35 ms
52,344 KB
testcase_25 AC 68 ms
75,856 KB
testcase_26 AC 57 ms
76,052 KB
testcase_27 AC 53 ms
74,988 KB
testcase_28 AC 207 ms
81,020 KB
testcase_29 AC 124 ms
76,736 KB
testcase_30 AC 69 ms
75,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = 10 ** 10
L = [l*X for l in list(map(int,input().split()))]
K = int(input())
lb = 0
ub = 10 ** 20

def check(x):
    tmp = 0
    for l in L:
        tmp += l//x
    return tmp >= K

while ub - lb > 1:
    mid = (ub + lb) // 2
    if check(mid):
        lb = mid
    else:
        ub = mid
print(lb/X)
0