結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-01-01 22:39:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,867 ms / 5,000 ms
コード長 278 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 107,904 KB
最終ジャッジ日時 2024-11-08 13:40:13
合計ジャッジ時間 26,135 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 654 ms
102,272 KB
testcase_01 AC 46 ms
58,112 KB
testcase_02 AC 673 ms
78,592 KB
testcase_03 AC 1,255 ms
94,720 KB
testcase_04 AC 1,236 ms
103,296 KB
testcase_05 AC 1,220 ms
103,296 KB
testcase_06 AC 943 ms
103,552 KB
testcase_07 AC 1,734 ms
102,144 KB
testcase_08 AC 1,867 ms
101,888 KB
testcase_09 AC 1,345 ms
102,144 KB
testcase_10 AC 1,114 ms
99,072 KB
testcase_11 AC 1,177 ms
102,912 KB
testcase_12 AC 833 ms
98,176 KB
testcase_13 AC 1,597 ms
104,576 KB
testcase_14 AC 1,647 ms
107,904 KB
testcase_15 AC 1,184 ms
102,656 KB
testcase_16 AC 546 ms
103,040 KB
testcase_17 AC 483 ms
102,656 KB
testcase_18 AC 458 ms
102,912 KB
testcase_19 AC 623 ms
102,144 KB
testcase_20 AC 477 ms
101,888 KB
testcase_21 AC 481 ms
102,016 KB
testcase_22 AC 416 ms
98,048 KB
testcase_23 AC 438 ms
101,888 KB
testcase_24 AC 42 ms
51,968 KB
testcase_25 AC 86 ms
60,928 KB
testcase_26 AC 64 ms
60,288 KB
testcase_27 AC 57 ms
59,136 KB
testcase_28 AC 330 ms
67,968 KB
testcase_29 AC 198 ms
63,744 KB
testcase_30 AC 92 ms
61,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
L = list(map(int,input().split()))
K = int(input())


def calc(x):
    count = 0
    for l in L:
        count += l//x
    return count

l = 0
r = 10**9+5

for i in range(80):
    m = (r+l)/2
    if calc(m) >= K:
        l = m
    else:
        r = m

print(l)
0