結果

問題 No.2221 Set X
ユーザー stoqstoq
提出日時 2022-05-27 13:29:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 452 ms / 2,000 ms
コード長 636 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 89,836 KB
最終ジャッジ日時 2024-07-01 23:04:14
合計ジャッジ時間 11,372 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 38 ms
52,000 KB
testcase_08 AC 57 ms
66,560 KB
testcase_09 AC 44 ms
58,496 KB
testcase_10 AC 58 ms
67,584 KB
testcase_11 AC 52 ms
63,360 KB
testcase_12 AC 52 ms
64,384 KB
testcase_13 AC 55 ms
65,536 KB
testcase_14 AC 58 ms
69,504 KB
testcase_15 AC 56 ms
66,304 KB
testcase_16 AC 205 ms
78,848 KB
testcase_17 AC 115 ms
76,104 KB
testcase_18 AC 224 ms
79,360 KB
testcase_19 AC 106 ms
76,188 KB
testcase_20 AC 154 ms
77,388 KB
testcase_21 AC 209 ms
81,152 KB
testcase_22 AC 271 ms
84,380 KB
testcase_23 AC 69 ms
75,904 KB
testcase_24 AC 201 ms
81,408 KB
testcase_25 AC 144 ms
78,664 KB
testcase_26 AC 408 ms
88,844 KB
testcase_27 AC 451 ms
89,472 KB
testcase_28 AC 452 ms
89,392 KB
testcase_29 AC 348 ms
89,368 KB
testcase_30 AC 381 ms
89,344 KB
testcase_31 AC 450 ms
89,472 KB
testcase_32 AC 310 ms
89,836 KB
testcase_33 AC 337 ms
89,448 KB
testcase_34 AC 321 ms
89,380 KB
testcase_35 AC 312 ms
89,616 KB
testcase_36 AC 355 ms
89,388 KB
testcase_37 AC 359 ms
89,600 KB
testcase_38 AC 348 ms
89,480 KB
testcase_39 AC 385 ms
87,168 KB
testcase_40 AC 430 ms
87,936 KB
testcase_41 AC 397 ms
89,216 KB
testcase_42 AC 396 ms
89,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin

input = stdin.readline

n = int(input())
a = list(map(int, input().split()))
a.append(int(2e9))

Min = int(1e18)
Minx = -1


def lower_bound(lo, val):
    hi = n + 1
    while hi - lo > 1:
        mi = (lo + hi) // 2
        if a[mi] >= val:
            hi = mi
        else:
            lo = mi
    return hi


for x in range(1, n * 2 + 1):
    i = 0
    k = 0
    while i < n:
        i = lower_bound(i, (a[i] // x + 1) * x)
        k += 1
        if (x + 1) * k >= Min:
            k = -1
            break
    if k != -1 and (x + 1) * k < Min:
        Min = (x + 1) * k
        Minx = x
print(Minx)
print(Min)
0