結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー yusuke-svenssonyusuke-svensson
提出日時 2023-01-04 21:30:13
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 367 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 63,460 KB
最終ジャッジ日時 2024-11-28 01:32:19
合計ジャッジ時間 102,749 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 31 ms
41,656 KB
testcase_02 AC 645 ms
51,728 KB
testcase_03 AC 1,188 ms
32,100 KB
testcase_04 AC 1,683 ms
36,160 KB
testcase_05 AC 1,620 ms
60,200 KB
testcase_06 TLE -
testcase_07 AC 1,617 ms
63,460 KB
testcase_08 AC 1,613 ms
63,348 KB
testcase_09 TLE -
testcase_10 AC 1,411 ms
61,624 KB
testcase_11 AC 1,484 ms
62,256 KB
testcase_12 TLE -
testcase_13 AC 1,536 ms
36,676 KB
testcase_14 AC 1,583 ms
37,204 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 30 ms
10,624 KB
testcase_25 AC 65 ms
11,136 KB
testcase_26 AC 42 ms
10,880 KB
testcase_27 AC 38 ms
10,880 KB
testcase_28 AC 296 ms
14,244 KB
testcase_29 AC 162 ms
12,416 KB
testcase_30 AC 66 ms
41,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N=int(input())
LN=list(map(float,input().split()))
K=int(input())

def isOK(len):
     cnt=0
     for i in LN:
          cnt+=math.floor(i/len)
     if cnt>=K:
          return True
     else:
          return False

ok=0
ng=10**9+1

while abs(ok-ng)>10**-11:
     mid=(ok+ng)/2.0
     if isOK(mid):
          ok=mid
     else:
          ng=mid

print(ok)
0