結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー Ryota_PyRyota_Py
提出日時 2022-04-03 20:28:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,242 ms / 5,000 ms
コード長 690 bytes
コンパイル時間 500 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 107,008 KB
最終ジャッジ日時 2024-11-08 13:46:34
合計ジャッジ時間 32,305 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 834 ms
101,808 KB
testcase_01 AC 52 ms
60,544 KB
testcase_02 AC 868 ms
87,808 KB
testcase_03 AC 1,631 ms
98,560 KB
testcase_04 AC 1,533 ms
106,752 KB
testcase_05 AC 1,526 ms
106,880 KB
testcase_06 AC 1,227 ms
107,008 KB
testcase_07 AC 2,242 ms
100,112 KB
testcase_08 AC 2,227 ms
100,364 KB
testcase_09 AC 1,715 ms
100,352 KB
testcase_10 AC 1,398 ms
103,296 KB
testcase_11 AC 1,463 ms
106,624 KB
testcase_12 AC 1,073 ms
102,784 KB
testcase_13 AC 2,045 ms
99,584 KB
testcase_14 AC 2,122 ms
99,580 KB
testcase_15 AC 1,530 ms
99,200 KB
testcase_16 AC 718 ms
106,880 KB
testcase_17 AC 633 ms
107,008 KB
testcase_18 AC 603 ms
106,752 KB
testcase_19 AC 653 ms
100,240 KB
testcase_20 AC 659 ms
100,236 KB
testcase_21 AC 610 ms
100,236 KB
testcase_22 AC 547 ms
103,168 KB
testcase_23 AC 587 ms
106,496 KB
testcase_24 AC 46 ms
53,888 KB
testcase_25 AC 113 ms
71,552 KB
testcase_26 AC 80 ms
66,816 KB
testcase_27 AC 69 ms
64,128 KB
testcase_28 AC 430 ms
80,384 KB
testcase_29 AC 265 ms
77,440 KB
testcase_30 AC 116 ms
72,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,math,collections,itertools
from collections import deque
INF = 10**18
def I(): return int(input())
def MI(): return map(int,input().split())
def LI(): return list(map(int,input().split()))
def TI(): return tuple(map(int,input().split()))
def S(): return input()
def LS(): return list(input().split())
def TS(): return tuple(input().split())
def lcm(a, b): return a * b // math.gcd(a, b)
MOD1 = 10**9+7 #500000004
MOD2 = 998244353 #499122177
sys.setrecursionlimit(10**9)

a = I()
l = LI()
k = I()
m = 10**(-9)
M = 10**9
for i in range(100):
    mid = (m+M)/2
    s = 0
    for j in range(a):
        s += l[j]//mid
    if s >= k:
        m = mid
    else:
        M = mid
print(m)
0