結果

問題 No.2221 Set X
ユーザー tassei903tassei903
提出日時 2024-09-20 16:19:16
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,459 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,780 KB
実行使用メモリ 276,064 KB
最終ジャッジ日時 2024-09-20 16:19:26
合計ジャッジ時間 8,466 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
68,340 KB
testcase_01 AC 44 ms
61,968 KB
testcase_02 AC 52 ms
60,128 KB
testcase_03 AC 46 ms
60,536 KB
testcase_04 AC 42 ms
61,068 KB
testcase_05 AC 49 ms
61,228 KB
testcase_06 AC 42 ms
60,868 KB
testcase_07 AC 43 ms
61,392 KB
testcase_08 AC 60 ms
69,804 KB
testcase_09 AC 43 ms
61,904 KB
testcase_10 AC 61 ms
71,460 KB
testcase_11 AC 61 ms
69,468 KB
testcase_12 AC 57 ms
67,564 KB
testcase_13 AC 62 ms
71,048 KB
testcase_14 AC 67 ms
76,568 KB
testcase_15 AC 64 ms
73,076 KB
testcase_16 AC 963 ms
83,120 KB
testcase_17 AC 282 ms
78,756 KB
testcase_18 AC 1,155 ms
84,548 KB
testcase_19 AC 243 ms
78,372 KB
testcase_20 AC 810 ms
81,056 KB
testcase_21 TLE -
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, MAX): # k = floor(x / i) (L < i <= R) となる (k, L, R) のリストを返す
    res = []
    R = MAX
    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)

pre = floor_decomposition(a[0], N)

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

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