結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
61,352 KB
testcase_01 AC 42 ms
61,820 KB
testcase_02 AC 49 ms
60,436 KB
testcase_03 AC 48 ms
60,916 KB
testcase_04 AC 41 ms
61,256 KB
testcase_05 AC 41 ms
61,056 KB
testcase_06 AC 39 ms
61,472 KB
testcase_07 AC 40 ms
60,540 KB
testcase_08 AC 85 ms
69,736 KB
testcase_09 AC 46 ms
62,308 KB
testcase_10 AC 59 ms
72,152 KB
testcase_11 AC 56 ms
69,656 KB
testcase_12 AC 54 ms
67,764 KB
testcase_13 AC 60 ms
70,136 KB
testcase_14 AC 65 ms
76,144 KB
testcase_15 AC 64 ms
72,064 KB
testcase_16 AC 920 ms
83,096 KB
testcase_17 AC 277 ms
78,388 KB
testcase_18 AC 1,115 ms
84,900 KB
testcase_19 AC 240 ms
78,344 KB
testcase_20 AC 804 ms
80,892 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): # 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)

pre = floor_decomposition(a[0])

for i in range(n-1):
    now = floor_decomposition(a[i+1])
    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