結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー syunsukesyunsuke
提出日時 2019-09-23 21:00:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,834 ms / 5,000 ms
コード長 216 bytes
コンパイル時間 436 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 108,160 KB
最終ジャッジ日時 2024-11-08 13:02:47
合計ジャッジ時間 26,851 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 726 ms
102,016 KB
testcase_01 AC 47 ms
58,112 KB
testcase_02 AC 703 ms
87,040 KB
testcase_03 AC 1,317 ms
98,176 KB
testcase_04 AC 1,243 ms
106,112 KB
testcase_05 AC 1,237 ms
106,240 KB
testcase_06 AC 1,025 ms
106,368 KB
testcase_07 AC 1,818 ms
101,760 KB
testcase_08 AC 1,834 ms
101,888 KB
testcase_09 AC 1,417 ms
102,144 KB
testcase_10 AC 1,139 ms
102,784 KB
testcase_11 AC 1,183 ms
106,112 KB
testcase_12 AC 881 ms
102,656 KB
testcase_13 AC 1,630 ms
104,704 KB
testcase_14 AC 1,723 ms
108,160 KB
testcase_15 AC 1,243 ms
104,192 KB
testcase_16 AC 611 ms
106,368 KB
testcase_17 AC 540 ms
105,984 KB
testcase_18 AC 517 ms
106,112 KB
testcase_19 AC 563 ms
101,760 KB
testcase_20 AC 568 ms
102,016 KB
testcase_21 AC 530 ms
101,888 KB
testcase_22 AC 468 ms
102,912 KB
testcase_23 AC 496 ms
105,984 KB
testcase_24 AC 41 ms
51,968 KB
testcase_25 AC 98 ms
67,584 KB
testcase_26 AC 71 ms
63,744 KB
testcase_27 AC 62 ms
61,184 KB
testcase_28 AC 354 ms
79,360 KB
testcase_29 AC 220 ms
76,672 KB
testcase_30 AC 102 ms
68,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

H=10**9
L=0

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