結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー tnodinotnodino
提出日時 2022-03-06 14:46:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,171 ms / 5,000 ms
コード長 344 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 107,264 KB
最終ジャッジ日時 2024-11-08 13:44:38
合計ジャッジ時間 30,252 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 727 ms
102,272 KB
testcase_01 AC 44 ms
58,368 KB
testcase_02 AC 817 ms
80,768 KB
testcase_03 AC 1,560 ms
98,176 KB
testcase_04 AC 1,472 ms
106,496 KB
testcase_05 AC 1,452 ms
106,368 KB
testcase_06 AC 1,172 ms
106,240 KB
testcase_07 AC 2,156 ms
102,016 KB
testcase_08 AC 2,171 ms
102,016 KB
testcase_09 AC 1,638 ms
102,016 KB
testcase_10 AC 1,338 ms
101,504 KB
testcase_11 AC 1,400 ms
106,112 KB
testcase_12 AC 1,038 ms
100,736 KB
testcase_13 AC 1,943 ms
104,704 KB
testcase_14 AC 2,044 ms
107,264 KB
testcase_15 AC 1,474 ms
104,320 KB
testcase_16 AC 662 ms
106,368 KB
testcase_17 AC 586 ms
106,368 KB
testcase_18 AC 563 ms
106,752 KB
testcase_19 AC 596 ms
102,016 KB
testcase_20 AC 601 ms
101,760 KB
testcase_21 AC 578 ms
102,144 KB
testcase_22 AC 503 ms
100,352 KB
testcase_23 AC 536 ms
104,448 KB
testcase_24 AC 39 ms
51,968 KB
testcase_25 AC 100 ms
62,592 KB
testcase_26 AC 71 ms
62,336 KB
testcase_27 AC 61 ms
59,904 KB
testcase_28 AC 400 ms
70,016 KB
testcase_29 AC 240 ms
66,176 KB
testcase_30 AC 103 ms
62,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Check(x):
    cnt = 0
    for i in range(N):
        cnt += L[i] // x
    if cnt >= K:
        return True
    else:
        return False

N = int(input())
L = list(map(int,input().split()))
K = int(input())
ok = 0
ng = max(L) + 1
for _ in range(100):
    x = (ok + ng) / 2
    if Check(x):
        ok = x
    else:
        ng = x
print(ok)
0