結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | Bucchiman |
提出日時 | 2020-08-18 00:43:24 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 541 bytes |
コンパイル時間 | 275 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 32,808 KB |
最終ジャッジ日時 | 2024-10-11 13:31:24 |
合計ジャッジ時間 | 36,024 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,411 ms
32,808 KB |
testcase_01 | AC | 32 ms
10,880 KB |
testcase_02 | AC | 867 ms
19,020 KB |
testcase_03 | AC | 1,656 ms
26,432 KB |
testcase_04 | AC | 1,903 ms
29,344 KB |
testcase_05 | AC | 1,873 ms
29,344 KB |
testcase_06 | AC | 1,703 ms
29,212 KB |
testcase_07 | AC | 2,256 ms
32,772 KB |
testcase_08 | AC | 2,268 ms
32,516 KB |
testcase_09 | AC | 1,991 ms
32,520 KB |
testcase_10 | AC | 1,688 ms
27,508 KB |
testcase_11 | AC | 1,780 ms
28,400 KB |
testcase_12 | AC | 1,491 ms
26,956 KB |
testcase_13 | AC | 2,085 ms
31,144 KB |
testcase_14 | AC | 2,160 ms
31,932 KB |
testcase_15 | AC | 1,730 ms
29,384 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 | -- | - |
ソースコード
#!/usr/bin/env python # -*- coding: utf-8 -*- # # FileName: code # CreatedDate: 2020-08-17 16:53:46 +0900 # LastModified: 2020-08-18 00:43:11 +0900 # def main(): N = int(input()) L = list(map(int, input().split())) K = int(input()) left = 0 right = 10**9 while left+10**(-9) < right: middle = (left+right)/2 sum_sticks = sum(l//middle for l in L) if sum_sticks < K: right = middle else: left = middle print(left) if __name__ == "__main__": main()