結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | mkawa2 |
提出日時 | 2020-01-10 12:20:24 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 905 bytes |
コンパイル時間 | 88 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 61,056 KB |
最終ジャッジ日時 | 2024-11-23 21:51:55 |
合計ジャッジ時間 | 112,782 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | AC | 31 ms
38,928 KB |
testcase_02 | AC | 1,124 ms
24,248 KB |
testcase_03 | AC | 2,145 ms
59,048 KB |
testcase_04 | AC | 2,881 ms
55,396 KB |
testcase_05 | AC | 2,801 ms
57,804 KB |
testcase_06 | TLE | - |
testcase_07 | AC | 2,894 ms
61,056 KB |
testcase_08 | AC | 2,871 ms
38,012 KB |
testcase_09 | TLE | - |
testcase_10 | AC | 2,560 ms
60,408 KB |
testcase_11 | AC | 2,714 ms
59,900 KB |
testcase_12 | TLE | - |
testcase_13 | AC | 2,677 ms
59,052 KB |
testcase_14 | AC | 2,794 ms
37,296 KB |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | AC | 29 ms
10,880 KB |
testcase_25 | AC | 86 ms
11,136 KB |
testcase_26 | AC | 49 ms
10,880 KB |
testcase_27 | AC | 42 ms
10,752 KB |
testcase_28 | AC | 495 ms
14,340 KB |
testcase_29 | AC | 260 ms
12,288 KB |
testcase_30 | AC | 90 ms
40,064 KB |
ソースコード
import sys sys.setrecursionlimit(10 ** 6) from bisect import * from collections import * from heapq import * int1 = lambda x: int(x) - 1 p2D = lambda x: print(*x, sep="\n") def II(): return int(sys.stdin.readline()) def MI(): return map(int, sys.stdin.readline().split()) def MI1(): return map(int1, sys.stdin.readline().split()) def MF(): return map(float, sys.stdin.readline().split()) def LI(): return list(map(int, sys.stdin.readline().split())) def LI1(): return list(map(int1, sys.stdin.readline().split())) def LF(): return list(map(float, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] dij = [(0, 1), (1, 0), (0, -1), (-1, 0)] def main(): n=II() bb=LI() k=II() l=0 r=max(bb)+1 while r-l>10**-11: m=(l+r)/2 if sum(int(b/m) for b in bb)>=k: l=m else: r=m print(l) main()