結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー hang_hang_clnhang_hang_cln
提出日時 2018-06-14 22:04:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 777 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 36,308 KB
最終ジャッジ日時 2024-06-30 14:32:27
合計ジャッジ時間 30,375 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,127 ms
33,292 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 721 ms
19,036 KB
testcase_03 AC 1,369 ms
26,448 KB
testcase_04 AC 1,536 ms
29,228 KB
testcase_05 AC 1,537 ms
29,360 KB
testcase_06 AC 1,364 ms
29,356 KB
testcase_07 AC 1,891 ms
32,536 KB
testcase_08 AC 1,902 ms
32,404 KB
testcase_09 AC 1,645 ms
32,664 KB
testcase_10 AC 1,383 ms
27,524 KB
testcase_11 AC 1,460 ms
28,420 KB
testcase_12 AC 1,200 ms
26,852 KB
testcase_13 AC 1,724 ms
31,032 KB
testcase_14 AC 1,802 ms
31,888 KB
testcase_15 AC 1,456 ms
29,404 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def countCuttedSticks(stickList, cutLength):
    count = 0
    for stick in stickList:
        count += stick // cutLength
    
    return count
    
def main():
    low = 0
    high = max(stickList)
    if countCuttedSticks(stickList, high) == K:
        print(high)
    else:
        previousAns = -1
        while(high - low >= 2 * 10** -9):
            ans = (low + high) / 2
            if countCuttedSticks(stickList, ans) >= K: # 本数を少なくするために切る長さを長くする
                low = ans
            else: # 本数を多くするために切る長さを短くする
                high = ans
            
        print(ans)

if __name__ == '__main__':
    main()
0