結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | hang_hang_cln |
提出日時 | 2018-06-14 22:01:21 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 872 bytes |
コンパイル時間 | 104 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 36,332 KB |
最終ジャッジ日時 | 2024-06-30 14:31:14 |
合計ジャッジ時間 | 30,279 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,096 ms
32,592 KB |
testcase_01 | AC | 29 ms
10,624 KB |
testcase_02 | AC | 688 ms
18,804 KB |
testcase_03 | AC | 1,282 ms
26,476 KB |
testcase_04 | AC | 1,450 ms
29,128 KB |
testcase_05 | AC | 1,417 ms
29,256 KB |
testcase_06 | AC | 1,268 ms
29,120 KB |
testcase_07 | AC | 1,778 ms
32,432 KB |
testcase_08 | AC | 1,778 ms
32,680 KB |
testcase_09 | AC | 1,559 ms
32,688 KB |
testcase_10 | AC | 1,277 ms
26,340 KB |
testcase_11 | AC | 1,367 ms
28,316 KB |
testcase_12 | AC | 1,077 ms
25,700 KB |
testcase_13 | AC | 1,620 ms
30,824 KB |
testcase_14 | AC | 1,777 ms
31,356 KB |
testcase_15 | AC | 1,399 ms
29,300 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 | -- | - |
ソースコード
N = int(input()) stickList = list(map(int,input().split())) 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 ** -8): ans = (low + high) / 2 if countCuttedSticks(stickList, ans) >= K: # 本数を少なくするために切る長さを長くする low = ans else: # 本数を多くするために切る長さを短くする high = ans print(ans) if __name__ == '__main__': main()