結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー ynyn
提出日時 2018-04-17 19:32:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 293 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,680 KB
最終ジャッジ日時 2024-06-27 04:13:35
合計ジャッジ時間 71,488 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,526 ms
32,680 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 1,477 ms
18,900 KB
testcase_03 AC 2,843 ms
26,440 KB
testcase_04 AC 3,388 ms
29,348 KB
testcase_05 AC 3,232 ms
29,352 KB
testcase_06 AC 2,965 ms
29,220 KB
testcase_07 AC 3,912 ms
32,656 KB
testcase_08 AC 3,891 ms
32,524 KB
testcase_09 AC 3,442 ms
32,496 KB
testcase_10 AC 2,936 ms
26,428 KB
testcase_11 AC 3,112 ms
28,536 KB
testcase_12 AC 2,574 ms
25,792 KB
testcase_13 AC 3,599 ms
30,684 KB
testcase_14 AC 3,670 ms
31,460 KB
testcase_15 AC 2,932 ms
29,392 KB
testcase_16 AC 2,527 ms
29,352 KB
testcase_17 AC 2,443 ms
29,336 KB
testcase_18 AC 2,403 ms
29,340 KB
testcase_19 AC 2,327 ms
32,524 KB
testcase_20 AC 2,340 ms
32,524 KB
testcase_21 AC 2,349 ms
32,540 KB
testcase_22 AC 2,171 ms
26,440 KB
testcase_23 AC 2,292 ms
28,416 KB
testcase_24 WA -
testcase_25 AC 111 ms
11,136 KB
testcase_26 AC 59 ms
10,880 KB
testcase_27 AC 49 ms
10,752 KB
testcase_28 AC 662 ms
14,296 KB
testcase_29 AC 360 ms
12,528 KB
testcase_30 AC 114 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def f(x):
    ret = 0
    for i in range(n):
        ret += l[i] // x
    return ret

ok = 1
ng = 10 ** 9 + 1

for i in range(100):
    m = (ok + ng) / 2
    if f(m) >= k:
        ok = m
    else:
        ng = m

print(ok)
0