結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー ynyn
提出日時 2018-04-17 19:33:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 293 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 108,048 KB
最終ジャッジ日時 2024-06-27 04:14:17
合計ジャッジ時間 30,151 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 723 ms
102,428 KB
testcase_01 AC 39 ms
58,292 KB
testcase_02 AC 805 ms
82,624 KB
testcase_03 AC 1,555 ms
98,212 KB
testcase_04 AC 1,462 ms
106,384 KB
testcase_05 AC 1,454 ms
106,184 KB
testcase_06 AC 1,156 ms
106,408 KB
testcase_07 AC 2,146 ms
102,144 KB
testcase_08 AC 2,155 ms
102,020 KB
testcase_09 AC 1,639 ms
101,936 KB
testcase_10 AC 1,333 ms
101,100 KB
testcase_11 AC 1,409 ms
106,328 KB
testcase_12 AC 1,018 ms
100,340 KB
testcase_13 AC 1,934 ms
104,656 KB
testcase_14 AC 2,045 ms
108,048 KB
testcase_15 AC 1,449 ms
104,152 KB
testcase_16 AC 647 ms
106,316 KB
testcase_17 AC 560 ms
104,968 KB
testcase_18 AC 542 ms
105,468 KB
testcase_19 AC 586 ms
102,172 KB
testcase_20 AC 578 ms
102,176 KB
testcase_21 AC 551 ms
102,320 KB
testcase_22 AC 485 ms
101,232 KB
testcase_23 AC 510 ms
104,192 KB
testcase_24 WA -
testcase_25 AC 97 ms
64,260 KB
testcase_26 AC 66 ms
62,448 KB
testcase_27 AC 58 ms
61,072 KB
testcase_28 AC 398 ms
71,148 KB
testcase_29 AC 237 ms
68,080 KB
testcase_30 AC 96 ms
63,564 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