結果
| 問題 |
No.67 よくある棒を切る問題 (1)
|
| コンテスト | |
| ユーザー |
ytft
|
| 提出日時 | 2022-11-07 10:09:12 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 206 ms / 5,000 ms |
| コード長 | 242 bytes |
| コンパイル時間 | 248 ms |
| コンパイル使用メモリ | 82,580 KB |
| 実行使用メモリ | 107,836 KB |
| 最終ジャッジ日時 | 2025-03-03 12:03:30 |
| 合計ジャッジ時間 | 6,430 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 30 |
ソースコード
import sys input=lambda:sys.stdin.readline().rstrip() N=int(input()) L=list(map(int,input().split())) K=int(input()) m=[0.0,float(max(L))] for j in range(70): mid=sum(m)/2 count=0 for i in L: count+=int(i/mid) m[K>count]=mid print(m[1])
ytft