結果

問題 No.2221 Set X
ユーザー ShirotsumeShirotsume
提出日時 2023-02-14 22:22:51
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 890 ms / 2,000 ms
コード長 650 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 22,204 KB
最終ジャッジ日時 2024-07-17 10:13:12
合計ジャッジ時間 19,104 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
11,008 KB
testcase_01 AC 32 ms
11,136 KB
testcase_02 AC 32 ms
11,264 KB
testcase_03 AC 32 ms
11,136 KB
testcase_04 AC 32 ms
11,264 KB
testcase_05 AC 32 ms
11,136 KB
testcase_06 AC 32 ms
11,136 KB
testcase_07 AC 32 ms
11,136 KB
testcase_08 AC 34 ms
11,136 KB
testcase_09 AC 32 ms
11,136 KB
testcase_10 AC 35 ms
11,136 KB
testcase_11 AC 33 ms
11,136 KB
testcase_12 AC 33 ms
11,136 KB
testcase_13 AC 34 ms
11,136 KB
testcase_14 AC 36 ms
11,008 KB
testcase_15 AC 34 ms
11,264 KB
testcase_16 AC 347 ms
14,152 KB
testcase_17 AC 139 ms
12,288 KB
testcase_18 AC 397 ms
15,024 KB
testcase_19 AC 124 ms
12,160 KB
testcase_20 AC 232 ms
13,440 KB
testcase_21 AC 549 ms
16,588 KB
testcase_22 AC 736 ms
18,396 KB
testcase_23 AC 66 ms
11,648 KB
testcase_24 AC 503 ms
16,244 KB
testcase_25 AC 322 ms
14,412 KB
testcase_26 AC 755 ms
21,520 KB
testcase_27 AC 842 ms
22,040 KB
testcase_28 AC 839 ms
22,168 KB
testcase_29 AC 748 ms
22,204 KB
testcase_30 AC 758 ms
21,644 KB
testcase_31 AC 836 ms
22,044 KB
testcase_32 AC 734 ms
22,188 KB
testcase_33 AC 890 ms
22,064 KB
testcase_34 AC 824 ms
22,192 KB
testcase_35 AC 776 ms
22,064 KB
testcase_36 AC 748 ms
22,192 KB
testcase_37 AC 761 ms
22,152 KB
testcase_38 AC 753 ms
21,860 KB
testcase_39 AC 746 ms
20,636 KB
testcase_40 AC 805 ms
21,036 KB
testcase_41 AC 792 ms
21,800 KB
testcase_42 AC 784 ms
21,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
import time
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353
import random
import bisect
n = ii()

a = li()

def check(x, k):
    now = 0
    cnt = 0
    while now < n:
        cnt += 1
        if cnt > k:
            return cnt
        now = bisect.bisect_left(a, x * (a[now] // x + 1))
    return cnt

ans = 2 * n
x = 1

for i in range(2, 2 * n):
    k = ans // (i + 1)
    p = check(i, k)
    if ans > p * (i + 1):
        ans = p * (i + 1)
        x = i

print(x)
print(ans)

0