結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー kohei2019kohei2019
提出日時 2021-05-22 14:11:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,486 ms / 5,000 ms
コード長 405 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 107,520 KB
最終ジャッジ日時 2024-11-08 13:37:58
合計ジャッジ時間 72,246 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,100 ms
102,276 KB
testcase_01 AC 51 ms
59,264 KB
testcase_02 AC 1,334 ms
86,656 KB
testcase_03 AC 2,503 ms
98,048 KB
testcase_04 AC 2,981 ms
106,112 KB
testcase_05 AC 2,988 ms
106,240 KB
testcase_06 AC 2,817 ms
106,112 KB
testcase_07 AC 3,486 ms
102,016 KB
testcase_08 AC 3,457 ms
102,144 KB
testcase_09 AC 3,191 ms
102,400 KB
testcase_10 AC 2,682 ms
102,528 KB
testcase_11 AC 2,837 ms
106,112 KB
testcase_12 AC 2,432 ms
102,400 KB
testcase_13 AC 3,116 ms
104,576 KB
testcase_14 AC 3,253 ms
107,520 KB
testcase_15 AC 2,725 ms
103,936 KB
testcase_16 AC 2,978 ms
106,240 KB
testcase_17 AC 2,969 ms
106,240 KB
testcase_18 AC 2,968 ms
105,984 KB
testcase_19 AC 3,002 ms
102,016 KB
testcase_20 AC 2,958 ms
102,400 KB
testcase_21 AC 2,956 ms
102,016 KB
testcase_22 AC 2,654 ms
102,528 KB
testcase_23 AC 2,810 ms
105,728 KB
testcase_24 AC 42 ms
52,480 KB
testcase_25 AC 133 ms
76,032 KB
testcase_26 AC 86 ms
72,704 KB
testcase_27 AC 74 ms
67,968 KB
testcase_28 AC 608 ms
79,744 KB
testcase_29 AC 341 ms
76,288 KB
testcase_30 AC 136 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def is_ok(arg):
    cnt = 0
    for i in range(N):
        cnt += lsL[i]//(arg*(10**(-9)))
    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**40,0)*(10**(-9)))
0