結果
問題 | No.68 よくある棒を切る問題 (2) |
ユーザー | hang_hang_cln |
提出日時 | 2018-06-14 21:52:26 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 927 bytes |
コンパイル時間 | 80 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 31,392 KB |
最終ジャッジ日時 | 2024-06-30 14:29:53 |
合計ジャッジ時間 | 13,819 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
N = int(input()) stickList = list(map(int,input().split())) Q = int(input()) KList = list(map(int,input().split())) def countCuttedSticks(stickList, cutLength): count = 0 for stick in stickList: count += stick // cutLength return count def main(): for K in KList: low = 0 high = max(stickList) if countCuttedSticks(stickList, high) == K: print(high) else: previousAns = -1 while(high - low >= 10 ** -9): ans = (low + high) / 2 if countCuttedSticks(stickList, ans) >= K: # 本数を少なくするために切る長さを長くする low = ans elif countCuttedSticks(stickList, ans) < K: # 本数を多くするために切る長さを短くする high = ans print(ans) if __name__ == '__main__': main()