結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | nisizawa |
提出日時 | 2017-12-09 16:20:42 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 300 bytes |
コンパイル時間 | 151 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 33,260 KB |
最終ジャッジ日時 | 2024-11-30 04:43:54 |
合計ジャッジ時間 | 45,903 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,774 ms
33,260 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 1,528 ms
26,428 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2,045 ms
32,640 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 1,825 ms
26,828 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 1,817 ms
29,244 KB |
testcase_16 | AC | 1,718 ms
29,328 KB |
testcase_17 | AC | 1,688 ms
29,324 KB |
testcase_18 | AC | 1,600 ms
29,200 KB |
testcase_19 | AC | 1,786 ms
32,512 KB |
testcase_20 | AC | 1,580 ms
32,508 KB |
testcase_21 | AC | 1,572 ms
32,508 KB |
testcase_22 | AC | 1,434 ms
27,516 KB |
testcase_23 | AC | 1,635 ms
28,440 KB |
testcase_24 | AC | 31 ms
10,624 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
ソースコード
n = int(input()) ls = list(map(int, input().split())) k = int(input()) low = 0 high = max(ls) for i in range(40): mid = (low + high) / 2 ct = 0 for l in ls: ct += l // mid if ct >= k: low = mid else: high = mid print('{:.20f}'.format(mid))