結果

問題 No.2221 Set X
ユーザー tassei903tassei903
提出日時 2024-09-20 16:12:09
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,423 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 838,888 KB
最終ジャッジ日時 2024-09-20 16:12:20
合計ジャッジ時間 5,460 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
67,612 KB
testcase_01 AC 41 ms
60,900 KB
testcase_02 AC 45 ms
60,000 KB
testcase_03 AC 41 ms
60,892 KB
testcase_04 AC 41 ms
60,608 KB
testcase_05 AC 45 ms
60,524 KB
testcase_06 AC 40 ms
60,736 KB
testcase_07 AC 39 ms
60,888 KB
testcase_08 AC 58 ms
70,872 KB
testcase_09 AC 46 ms
62,312 KB
testcase_10 AC 61 ms
71,308 KB
testcase_11 AC 54 ms
67,300 KB
testcase_12 AC 54 ms
67,624 KB
testcase_13 AC 70 ms
73,516 KB
testcase_14 AC 78 ms
81,832 KB
testcase_15 AC 68 ms
74,092 KB
testcase_16 MLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #


import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
######################################################################

def floor_decomposition(x): # k = floor(x / i) (L < i <= R) となる (k, L, R) のリストを返す
    res = []
    R = 10 ** 18
    while R:
        q = x // R
        L = x // (q + 1)
        res.append((q, L, R))
        R = L
    return res

def merge(A, B):
    i = 0
    j = 0
    ans = []
    X = 10 ** 18
    while i < len(A) and j < len(B):
        #print(X, A[i], B[j])
        if A[i][0] < B[j][0]:
            ans.append((max(A[i][1], B[j][1]), X))
        X = max(A[i][1], B[j][1])
        if A[i][1] < B[j][1]:
            j += 1
        else:
            i += 1
    
    return ans



N = 2 * 10 ** 5 + 10

n = ni()

a = na()

rui = [0] * (N + 1)

f = [floor_decomposition(a[i]) for i in range(n)]

for i in range(n-1):
    for l, r in merge(f[i], f[i+1]):
        if r + 1 <= N:
            rui[r+1] -= 1
        if l + 1 <= N:
            rui[l+1] += 1

for i in range(N):
    rui[i+1] += rui[i]

ans = 10 ** 18
I = -1

for i in range(1, N):
    if ans > (1 + rui[i]) * (i + 1):
        ans = (1 + rui[i]) * (i+1)
        I = i
print(I)
print(ans)
0