結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 32 ms
16,256 KB
testcase_02 AC 664 ms
24,552 KB
testcase_03 AC 1,250 ms
59,268 KB
testcase_04 AC 1,689 ms
59,048 KB
testcase_05 AC 1,711 ms
60,076 KB
testcase_06 TLE -
testcase_07 AC 1,692 ms
63,576 KB
testcase_08 AC 1,684 ms
38,056 KB
testcase_09 TLE -
testcase_10 AC 1,518 ms
61,652 KB
testcase_11 AC 1,414 ms
35,172 KB
testcase_12 TLE -
testcase_13 AC 1,495 ms
36,684 KB
testcase_14 AC 1,495 ms
31,832 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 27 ms
10,752 KB
testcase_25 AC 57 ms
11,136 KB
testcase_26 AC 37 ms
11,008 KB
testcase_27 AC 35 ms
10,880 KB
testcase_28 AC 273 ms
14,368 KB
testcase_29 AC 150 ms
12,416 KB
testcase_30 AC 58 ms
41,372 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