結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー kohei2019kohei2019
提出日時 2021-05-22 14:14:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,451 ms / 5,000 ms
コード長 415 bytes
コンパイル時間 2,244 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 108,032 KB
最終ジャッジ日時 2024-11-08 13:35:32
合計ジャッジ時間 21,825 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 574 ms
102,528 KB
testcase_01 AC 46 ms
58,240 KB
testcase_02 AC 569 ms
79,104 KB
testcase_03 AC 1,055 ms
94,848 KB
testcase_04 AC 955 ms
103,680 KB
testcase_05 AC 947 ms
103,680 KB
testcase_06 AC 770 ms
103,680 KB
testcase_07 AC 1,451 ms
102,272 KB
testcase_08 AC 1,432 ms
102,144 KB
testcase_09 AC 1,164 ms
101,888 KB
testcase_10 AC 878 ms
99,072 KB
testcase_11 AC 907 ms
103,040 KB
testcase_12 AC 688 ms
98,560 KB
testcase_13 AC 1,335 ms
104,320 KB
testcase_14 AC 1,362 ms
108,032 KB
testcase_15 AC 1,020 ms
104,192 KB
testcase_16 AC 474 ms
103,168 KB
testcase_17 AC 421 ms
102,912 KB
testcase_18 AC 409 ms
102,656 KB
testcase_19 AC 444 ms
102,144 KB
testcase_20 AC 421 ms
102,400 KB
testcase_21 AC 415 ms
102,272 KB
testcase_22 AC 371 ms
98,432 KB
testcase_23 AC 387 ms
102,144 KB
testcase_24 AC 43 ms
51,968 KB
testcase_25 AC 83 ms
61,312 KB
testcase_26 AC 64 ms
60,416 KB
testcase_27 AC 60 ms
59,392 KB
testcase_28 AC 287 ms
68,608 KB
testcase_29 AC 173 ms
64,256 KB
testcase_30 AC 83 ms
61,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def is_ok(arg):
    cnt = 0
    d = (arg*(10**(-9)))
    for i in range(N):
        cnt += lsL[i]//d
    return cnt >= K
 
def meguru_bisect(ng, ok):
    while (abs(ok - ng) > 1):
        mid = (ok + ng) // 2
        if is_ok(mid):
            ok = mid
        else:
            ng = mid
    return ok
print(meguru_bisect(10**20,0)*(10**(-9)))
0