結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー syunsukesyunsuke
提出日時 2019-09-23 20:59:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 216 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 107,904 KB
最終ジャッジ日時 2024-09-19 04:32:12
合計ジャッジ時間 17,764 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 486 ms
101,888 KB
testcase_01 WA -
testcase_02 AC 415 ms
86,784 KB
testcase_03 AC 777 ms
97,920 KB
testcase_04 AC 728 ms
105,984 KB
testcase_05 AC 739 ms
105,984 KB
testcase_06 AC 615 ms
105,856 KB
testcase_07 AC 1,091 ms
101,760 KB
testcase_08 AC 1,062 ms
101,376 KB
testcase_09 AC 846 ms
101,760 KB
testcase_10 AC 675 ms
102,528 KB
testcase_11 AC 700 ms
105,600 KB
testcase_12 AC 543 ms
101,888 KB
testcase_13 AC 973 ms
104,320 KB
testcase_14 AC 1,013 ms
107,904 KB
testcase_15 AC 747 ms
103,680 KB
testcase_16 AC 393 ms
105,728 KB
testcase_17 AC 355 ms
106,240 KB
testcase_18 AC 337 ms
105,984 KB
testcase_19 AC 381 ms
101,632 KB
testcase_20 AC 385 ms
101,504 KB
testcase_21 AC 356 ms
101,504 KB
testcase_22 AC 313 ms
102,528 KB
testcase_23 AC 324 ms
105,856 KB
testcase_24 WA -
testcase_25 AC 72 ms
65,792 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 215 ms
79,232 KB
testcase_29 AC 139 ms
76,288 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
K=int(input())

H=10**9
L=0

for i in range(50):
    M=(H+L)/2
    ans=0
    for l in A:
        ans+=l//M
    if ans<K:
        H=M
    else:
        L=M
print(M)
    
0