結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | lllllll88938494 |
提出日時 | 2022-06-02 15:37:07 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,683 ms / 5,000 ms |
コード長 | 282 bytes |
コンパイル時間 | 339 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 107,904 KB |
最終ジャッジ日時 | 2024-11-08 13:48:40 |
合計ジャッジ時間 | 24,608 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 31 |
ソースコード
n=int(input()) ns=list(map(int,input().split())) k=int(input()) def cal(x): cnt=0 for i in range(n): cnt+= ns[i] // x return cnt l=0 r=10**10 for i in range(80): mid= (l+r) / 2 if cal(mid) < k: r=mid else: l=mid print(r)