結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー KudeKude
提出日時 2021-01-25 01:19:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 532 ms / 5,000 ms
コード長 234 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 107,392 KB
最終ジャッジ日時 2024-11-08 13:29:48
合計ジャッジ時間 14,264 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 532 ms
102,016 KB
testcase_01 AC 54 ms
60,800 KB
testcase_02 AC 247 ms
86,272 KB
testcase_03 AC 398 ms
97,664 KB
testcase_04 AC 516 ms
106,112 KB
testcase_05 AC 517 ms
105,984 KB
testcase_06 AC 522 ms
105,728 KB
testcase_07 AC 520 ms
101,632 KB
testcase_08 AC 529 ms
101,760 KB
testcase_09 AC 524 ms
101,888 KB
testcase_10 AC 481 ms
102,400 KB
testcase_11 AC 501 ms
105,344 KB
testcase_12 AC 459 ms
102,400 KB
testcase_13 AC 487 ms
104,192 KB
testcase_14 AC 502 ms
107,392 KB
testcase_15 AC 453 ms
103,936 KB
testcase_16 AC 517 ms
105,728 KB
testcase_17 AC 514 ms
105,856 KB
testcase_18 AC 520 ms
106,112 KB
testcase_19 AC 523 ms
101,760 KB
testcase_20 AC 523 ms
102,016 KB
testcase_21 AC 528 ms
101,888 KB
testcase_22 AC 471 ms
102,144 KB
testcase_23 AC 499 ms
105,344 KB
testcase_24 AC 43 ms
52,096 KB
testcase_25 AC 81 ms
75,520 KB
testcase_26 AC 70 ms
68,736 KB
testcase_27 AC 64 ms
66,432 KB
testcase_28 AC 147 ms
79,232 KB
testcase_29 AC 108 ms
76,544 KB
testcase_30 AC 82 ms
75,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
L = list(map(int, input().split()))
k = int(input())
r = sum(L) + 1
l = 0
for _ in range(200):
    c = (r + l) / 2
    cnt = sum(int(li / c) for li in L)
    if cnt >= k:
        l = c
    else:
        r = c
print(l)
0