結果

問題 No.2221 Set X
ユーザー titiatitia
提出日時 2023-02-19 01:06:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 783 ms / 2,000 ms
コード長 870 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 90,496 KB
最終ジャッジ日時 2024-07-20 06:54:26
合計ジャッジ時間 17,611 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 45 ms
52,096 KB
testcase_03 AC 41 ms
52,352 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 40 ms
52,224 KB
testcase_06 AC 41 ms
52,480 KB
testcase_07 AC 41 ms
52,096 KB
testcase_08 AC 55 ms
61,392 KB
testcase_09 AC 45 ms
57,344 KB
testcase_10 AC 57 ms
62,180 KB
testcase_11 AC 51 ms
60,416 KB
testcase_12 AC 53 ms
60,416 KB
testcase_13 AC 55 ms
59,776 KB
testcase_14 AC 68 ms
62,976 KB
testcase_15 AC 59 ms
60,928 KB
testcase_16 AC 353 ms
78,896 KB
testcase_17 AC 173 ms
76,124 KB
testcase_18 AC 399 ms
80,004 KB
testcase_19 AC 164 ms
75,868 KB
testcase_20 AC 259 ms
77,568 KB
testcase_21 AC 434 ms
81,536 KB
testcase_22 AC 571 ms
85,444 KB
testcase_23 AC 88 ms
71,680 KB
testcase_24 AC 386 ms
81,536 KB
testcase_25 AC 268 ms
78,936 KB
testcase_26 AC 691 ms
88,956 KB
testcase_27 AC 711 ms
90,300 KB
testcase_28 AC 718 ms
90,368 KB
testcase_29 AC 647 ms
90,112 KB
testcase_30 AC 664 ms
90,240 KB
testcase_31 AC 709 ms
90,012 KB
testcase_32 AC 632 ms
89,984 KB
testcase_33 AC 755 ms
90,496 KB
testcase_34 AC 722 ms
90,496 KB
testcase_35 AC 702 ms
90,288 KB
testcase_36 AC 653 ms
90,180 KB
testcase_37 AC 665 ms
89,684 KB
testcase_38 AC 715 ms
90,032 KB
testcase_39 AC 656 ms
87,456 KB
testcase_40 AC 712 ms
88,560 KB
testcase_41 AC 783 ms
90,224 KB
testcase_42 AC 767 ms
90,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def calc(x):
    score=1
    for i in range(1,N):
        if A[i]//x!=A[i-1]//x:
            score+=1
    return score*(x+1)

def calc2(x):
    score=1
    now=A[0]//x
    OK=0
    
    while True:
        NG=len(A)

        while NG>OK+1:
            mid=(OK+NG)//2

            if A[mid]//x==now:
                OK=mid
            else:
                NG=mid

        if NG==len(A):
            break
        else:
            score+=1
            now=A[NG]//x
            OK=NG

        if score*(x+1)>=ANS:
            return 1<<100

    return score*(x+1)
        
    


N=int(input())
A=list(map(int,input().split()))

ANS=1<<100
IND=-1

for i in range(1,100):
    k=calc(i)

    if k<ANS:
        ANS=k
        IND=i

for i in range(100,ANS+1):
    k=calc2(i)

    if k<ANS:
        ANS=k
        IND=i
    if i>ANS:
        break

    

print(IND)
print(ANS)
0