結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-10-10 09:40:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,380 ms / 5,000 ms
コード長 544 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 105,568 KB
最終ジャッジ日時 2024-06-24 05:17:01
合計ジャッジ時間 32,865 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 811 ms
102,688 KB
testcase_01 AC 58 ms
61,480 KB
testcase_02 AC 849 ms
82,160 KB
testcase_03 AC 1,601 ms
97,348 KB
testcase_04 AC 1,597 ms
98,604 KB
testcase_05 AC 1,589 ms
98,740 KB
testcase_06 AC 1,215 ms
98,452 KB
testcase_07 AC 2,225 ms
102,440 KB
testcase_08 AC 2,380 ms
102,448 KB
testcase_09 AC 1,781 ms
102,432 KB
testcase_10 AC 1,436 ms
102,216 KB
testcase_11 AC 1,519 ms
105,540 KB
testcase_12 AC 1,060 ms
102,028 KB
testcase_13 AC 2,026 ms
96,972 KB
testcase_14 AC 2,110 ms
102,280 KB
testcase_15 AC 1,552 ms
96,828 KB
testcase_16 AC 690 ms
98,484 KB
testcase_17 AC 608 ms
98,720 KB
testcase_18 AC 579 ms
98,864 KB
testcase_19 AC 774 ms
102,188 KB
testcase_20 AC 585 ms
101,924 KB
testcase_21 AC 584 ms
102,056 KB
testcase_22 AC 522 ms
102,400 KB
testcase_23 AC 551 ms
105,568 KB
testcase_24 AC 50 ms
56,000 KB
testcase_25 AC 107 ms
65,120 KB
testcase_26 AC 79 ms
65,856 KB
testcase_27 AC 69 ms
62,868 KB
testcase_28 AC 416 ms
72,008 KB
testcase_29 AC 251 ms
68,936 KB
testcase_30 AC 111 ms
66,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline


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

def is_ok(x):
    if x==0:
        return True
    tmp = 0
    for l in L:
        tmp += l//x
        
    return tmp>=K
    
x = 0
y = 10**9 + 1
INF = 10**9+100
for _ in range(100):
    mid = (y+x)/2
    if is_ok(mid):
        x = mid
    else:
        y = mid
print(x)
0