結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー ynyn
提出日時 2018-04-17 19:40:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,156 ms / 5,000 ms
コード長 293 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 107,904 KB
最終ジャッジ日時 2024-11-08 12:40:27
合計ジャッジ時間 30,835 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 747 ms
102,016 KB
testcase_01 AC 49 ms
57,856 KB
testcase_02 AC 840 ms
80,128 KB
testcase_03 AC 1,600 ms
98,176 KB
testcase_04 AC 1,529 ms
105,984 KB
testcase_05 AC 1,464 ms
105,984 KB
testcase_06 AC 1,163 ms
105,856 KB
testcase_07 AC 2,156 ms
101,888 KB
testcase_08 AC 2,151 ms
101,888 KB
testcase_09 AC 1,642 ms
101,868 KB
testcase_10 AC 1,337 ms
100,864 KB
testcase_11 AC 1,398 ms
104,320 KB
testcase_12 AC 1,014 ms
100,352 KB
testcase_13 AC 1,936 ms
104,192 KB
testcase_14 AC 2,055 ms
107,904 KB
testcase_15 AC 1,450 ms
104,392 KB
testcase_16 AC 656 ms
106,112 KB
testcase_17 AC 572 ms
105,216 KB
testcase_18 AC 545 ms
104,960 KB
testcase_19 AC 595 ms
101,888 KB
testcase_20 AC 588 ms
101,884 KB
testcase_21 AC 566 ms
101,888 KB
testcase_22 AC 494 ms
99,712 KB
testcase_23 AC 526 ms
103,936 KB
testcase_24 AC 40 ms
51,712 KB
testcase_25 AC 97 ms
62,208 KB
testcase_26 AC 66 ms
61,568 KB
testcase_27 AC 58 ms
59,904 KB
testcase_28 AC 395 ms
69,760 KB
testcase_29 AC 234 ms
65,408 KB
testcase_30 AC 107 ms
62,976 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 = 0
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