結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー hang_hang_clnhang_hang_cln
提出日時 2018-06-14 23:15:45
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 3,284 ms / 5,000 ms
コード長 764 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,272 KB
最終ジャッジ日時 2024-11-08 12:45:06
合計ジャッジ時間 55,294 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,901 ms
33,272 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 1,248 ms
19,000 KB
testcase_03 AC 2,372 ms
26,452 KB
testcase_04 AC 2,645 ms
29,232 KB
testcase_05 AC 2,637 ms
29,356 KB
testcase_06 AC 2,353 ms
29,352 KB
testcase_07 AC 3,284 ms
32,536 KB
testcase_08 AC 3,275 ms
32,532 KB
testcase_09 AC 2,794 ms
32,664 KB
testcase_10 AC 2,391 ms
27,648 KB
testcase_11 AC 2,540 ms
28,420 KB
testcase_12 AC 2,041 ms
26,848 KB
testcase_13 AC 3,003 ms
31,152 KB
testcase_14 AC 3,119 ms
31,804 KB
testcase_15 AC 2,422 ms
29,276 KB
testcase_16 AC 1,883 ms
29,364 KB
testcase_17 AC 1,839 ms
29,344 KB
testcase_18 AC 1,758 ms
29,352 KB
testcase_19 AC 1,714 ms
32,664 KB
testcase_20 AC 1,691 ms
32,528 KB
testcase_21 AC 1,695 ms
32,532 KB
testcase_22 AC 108 ms
27,528 KB
testcase_23 AC 1,678 ms
28,424 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 101 ms
11,264 KB
testcase_26 AC 56 ms
10,880 KB
testcase_27 AC 48 ms
10,752 KB
testcase_28 AC 564 ms
14,176 KB
testcase_29 AC 309 ms
12,408 KB
testcase_30 AC 103 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

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
        for i in range(100):
            ans = (low + high) / 2
            if countCuttedSticks(stickList, ans) >= K: # 本数を少なくするために切る長さを長くする
                low = ans
            else: # 本数を多くするために切る長さを短くする
                high = ans
            
        print(ans)

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