結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー zonzo34zonzo34
提出日時 2021-12-09 11:26:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,234 ms / 5,000 ms
コード長 226 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 108,160 KB
最終ジャッジ日時 2024-11-08 13:38:31
合計ジャッジ時間 31,931 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 831 ms
102,144 KB
testcase_01 AC 46 ms
58,496 KB
testcase_02 AC 860 ms
86,912 KB
testcase_03 AC 1,612 ms
98,048 KB
testcase_04 AC 1,527 ms
105,984 KB
testcase_05 AC 1,505 ms
105,984 KB
testcase_06 AC 1,235 ms
105,984 KB
testcase_07 AC 2,220 ms
102,016 KB
testcase_08 AC 2,234 ms
101,888 KB
testcase_09 AC 1,706 ms
101,760 KB
testcase_10 AC 1,405 ms
102,656 KB
testcase_11 AC 1,445 ms
105,984 KB
testcase_12 AC 1,057 ms
102,400 KB
testcase_13 AC 2,000 ms
104,832 KB
testcase_14 AC 2,095 ms
108,160 KB
testcase_15 AC 1,502 ms
104,320 KB
testcase_16 AC 721 ms
106,240 KB
testcase_17 AC 644 ms
106,112 KB
testcase_18 AC 605 ms
106,368 KB
testcase_19 AC 657 ms
101,888 KB
testcase_20 AC 663 ms
101,760 KB
testcase_21 AC 619 ms
102,016 KB
testcase_22 AC 554 ms
102,656 KB
testcase_23 AC 589 ms
105,984 KB
testcase_24 AC 40 ms
51,584 KB
testcase_25 AC 108 ms
68,608 KB
testcase_26 AC 74 ms
64,384 KB
testcase_27 AC 64 ms
61,440 KB
testcase_28 AC 421 ms
79,360 KB
testcase_29 AC 258 ms
76,800 KB
testcase_30 AC 111 ms
69,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
L=list(map(int,input().split()))
K=int(input())

ok,ng=0,10**9
for i in range(100):
    md=(ok+ng)/2
    temp=0
    for l in L:
        temp+=l//md
    if K<=temp:
        ok=md
    else:
        ng=md
print(ok)
0