結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー るこーそーるこーそー
提出日時 2024-09-20 09:55:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,851 ms / 5,000 ms
コード長 263 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,652 KB
実行使用メモリ 107,776 KB
最終ジャッジ日時 2024-09-20 09:55:35
合計ジャッジ時間 27,341 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 739 ms
102,144 KB
testcase_01 AC 43 ms
58,496 KB
testcase_02 AC 695 ms
78,720 KB
testcase_03 AC 1,337 ms
95,104 KB
testcase_04 AC 1,259 ms
103,552 KB
testcase_05 AC 1,254 ms
103,040 KB
testcase_06 AC 987 ms
103,680 KB
testcase_07 AC 1,851 ms
101,760 KB
testcase_08 AC 1,833 ms
102,144 KB
testcase_09 AC 1,501 ms
102,236 KB
testcase_10 AC 1,121 ms
98,816 KB
testcase_11 AC 1,198 ms
102,784 KB
testcase_12 AC 894 ms
98,304 KB
testcase_13 AC 1,674 ms
104,960 KB
testcase_14 AC 1,768 ms
107,776 KB
testcase_15 AC 1,306 ms
103,808 KB
testcase_16 AC 628 ms
103,296 KB
testcase_17 AC 598 ms
102,528 KB
testcase_18 AC 547 ms
102,656 KB
testcase_19 AC 584 ms
101,888 KB
testcase_20 AC 568 ms
102,016 KB
testcase_21 AC 558 ms
102,016 KB
testcase_22 AC 501 ms
98,304 KB
testcase_23 AC 522 ms
102,144 KB
testcase_24 AC 38 ms
52,480 KB
testcase_25 AC 87 ms
60,672 KB
testcase_26 AC 59 ms
60,416 KB
testcase_27 AC 55 ms
59,392 KB
testcase_28 AC 341 ms
67,840 KB
testcase_29 AC 196 ms
64,512 KB
testcase_30 AC 85 ms
60,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def check(x):
    cnt=0
    for l in L:
        cnt+=l//x
    return cnt

cnt=0
ok,ng=0,10**18
while cnt<=100:
    cnt+=1
    mid=(ok+ng)/2
    if check(mid)>=k:ok=mid
    else:ng=mid
    

print(ok)
0