結果

問題 No.2221 Set X
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-02-18 16:50:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 622 ms / 2,000 ms
コード長 482 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 95,104 KB
最終ジャッジ日時 2024-07-20 02:24:13
合計ジャッジ時間 13,088 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 41 ms
52,224 KB
testcase_04 AC 36 ms
52,224 KB
testcase_05 AC 36 ms
52,480 KB
testcase_06 AC 36 ms
52,096 KB
testcase_07 AC 35 ms
52,096 KB
testcase_08 AC 61 ms
67,072 KB
testcase_09 AC 41 ms
58,112 KB
testcase_10 AC 64 ms
69,376 KB
testcase_11 AC 54 ms
63,744 KB
testcase_12 AC 61 ms
66,560 KB
testcase_13 AC 59 ms
66,560 KB
testcase_14 AC 78 ms
75,392 KB
testcase_15 AC 61 ms
67,456 KB
testcase_16 AC 276 ms
80,768 KB
testcase_17 AC 152 ms
76,928 KB
testcase_18 AC 304 ms
81,664 KB
testcase_19 AC 142 ms
76,544 KB
testcase_20 AC 201 ms
78,208 KB
testcase_21 AC 276 ms
84,096 KB
testcase_22 AC 346 ms
88,064 KB
testcase_23 AC 90 ms
76,160 KB
testcase_24 AC 332 ms
83,456 KB
testcase_25 AC 188 ms
80,384 KB
testcase_26 AC 523 ms
93,440 KB
testcase_27 AC 622 ms
94,720 KB
testcase_28 AC 611 ms
94,848 KB
testcase_29 AC 457 ms
94,464 KB
testcase_30 AC 487 ms
94,336 KB
testcase_31 AC 586 ms
95,104 KB
testcase_32 AC 403 ms
94,592 KB
testcase_33 AC 475 ms
94,976 KB
testcase_34 AC 418 ms
94,592 KB
testcase_35 AC 426 ms
94,720 KB
testcase_36 AC 455 ms
94,720 KB
testcase_37 AC 475 ms
94,464 KB
testcase_38 AC 462 ms
94,720 KB
testcase_39 AC 497 ms
91,392 KB
testcase_40 AC 567 ms
92,416 KB
testcase_41 AC 532 ms
94,592 KB
testcase_42 AC 533 ms
94,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

n = int(input())
A = list(map(int,input().split())) + [10**20]

ans = 2*n
ansx = 1
for x in range(1,2*n):
    count = 0
    now = 0
    while now < n:
        a = A[now]
        d = a//x
        na = x*(d+1)
        nex = bisect.bisect_left(A,na)
        count += 1
        now = nex
        # print(x,a,na,A[nex],now,count)
        if count * (x+1) >= ans:
            break
    if ans > count*(x+1):
        ans = count*(x+1)
        ansx = x
print(ansx)
print(ans)
0