結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー lllllll88938494lllllll88938494
提出日時 2022-06-02 15:34:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 282 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 107,904 KB
最終ジャッジ日時 2024-09-21 01:59:42
合計ジャッジ時間 19,414 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 503 ms
102,104 KB
testcase_01 AC 43 ms
58,112 KB
testcase_02 AC 498 ms
80,640 KB
testcase_03 AC 917 ms
96,620 KB
testcase_04 AC 859 ms
104,832 KB
testcase_05 AC 858 ms
106,316 KB
testcase_06 AC 710 ms
106,240 KB
testcase_07 AC 1,270 ms
102,272 KB
testcase_08 AC 1,271 ms
102,016 KB
testcase_09 AC 1,008 ms
102,016 KB
testcase_10 AC 774 ms
100,224 KB
testcase_11 AC 825 ms
103,936 KB
testcase_12 AC 631 ms
100,096 KB
testcase_13 AC 1,156 ms
104,576 KB
testcase_14 AC 1,200 ms
107,904 KB
testcase_15 AC 876 ms
104,192 KB
testcase_16 AC 436 ms
104,448 KB
testcase_17 AC 386 ms
104,320 KB
testcase_18 AC 372 ms
104,268 KB
testcase_19 AC 407 ms
101,976 KB
testcase_20 AC 391 ms
102,272 KB
testcase_21 AC 396 ms
102,144 KB
testcase_22 AC 345 ms
99,840 KB
testcase_23 AC 361 ms
104,064 KB
testcase_24 WA -
testcase_25 AC 79 ms
62,592 KB
testcase_26 AC 61 ms
61,440 KB
testcase_27 AC 52 ms
60,416 KB
testcase_28 AC 246 ms
69,640 KB
testcase_29 AC 152 ms
65,280 KB
testcase_30 AC 75 ms
62,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def  cal(x):
    cnt=0
    for i in range(n):
        cnt+= ns[i] // x
    return cnt

l=0
r=10**10

for i in range(60):
    mid= (l+r) / 2
    if cal(mid) < k:
        r=mid
    else:
        l=mid

print(r)
        
0