結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー 👑 rin204rin204
提出日時 2022-07-02 19:47:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,242 ms / 5,000 ms
コード長 337 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 107,776 KB
最終ジャッジ日時 2024-11-08 13:50:49
合計ジャッジ時間 29,998 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
102,272 KB
testcase_01 AC 44 ms
58,112 KB
testcase_02 AC 830 ms
80,256 KB
testcase_03 AC 1,599 ms
98,304 KB
testcase_04 AC 1,506 ms
106,240 KB
testcase_05 AC 1,504 ms
106,240 KB
testcase_06 AC 1,226 ms
106,240 KB
testcase_07 AC 2,240 ms
102,144 KB
testcase_08 AC 2,242 ms
102,016 KB
testcase_09 AC 1,705 ms
102,016 KB
testcase_10 AC 1,396 ms
100,864 KB
testcase_11 AC 1,458 ms
105,984 KB
testcase_12 AC 1,064 ms
100,224 KB
testcase_13 AC 2,000 ms
104,576 KB
testcase_14 AC 2,137 ms
107,776 KB
testcase_15 AC 1,522 ms
104,192 KB
testcase_16 AC 694 ms
106,496 KB
testcase_17 AC 604 ms
104,704 KB
testcase_18 AC 555 ms
103,296 KB
testcase_19 AC 629 ms
101,888 KB
testcase_20 AC 534 ms
102,016 KB
testcase_21 AC 442 ms
102,144 KB
testcase_22 AC 425 ms
98,176 KB
testcase_23 AC 442 ms
102,528 KB
testcase_24 AC 43 ms
52,224 KB
testcase_25 AC 108 ms
62,464 KB
testcase_26 AC 76 ms
61,824 KB
testcase_27 AC 64 ms
60,032 KB
testcase_28 AC 412 ms
69,760 KB
testcase_29 AC 245 ms
65,536 KB
testcase_30 AC 107 ms
62,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def ok(x):
    cnt = 0
    for l in L:
        cnt += l // x
        if cnt >= k:
            return True
    return False

l = 0
r = 10 ** 9
for _ in range(100):
    mid = (l + r) / 2
    if ok(mid):
        l = mid
    else:
        r = mid
print((l + r) / 2)
    
0