結果

問題 No.2570 最大最大公約数
ユーザー titiatitia
提出日時 2023-12-23 00:05:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 975 ms / 2,000 ms
コード長 677 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 77,560 KB
最終ジャッジ日時 2024-11-13 17:17:48
合計ジャッジ時間 6,857 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 975 ms
77,056 KB
testcase_01 AC 176 ms
74,752 KB
testcase_02 AC 200 ms
76,896 KB
testcase_03 AC 214 ms
76,928 KB
testcase_04 AC 140 ms
77,560 KB
testcase_05 AC 121 ms
70,272 KB
testcase_06 AC 186 ms
74,240 KB
testcase_07 AC 204 ms
74,624 KB
testcase_08 AC 60 ms
62,208 KB
testcase_09 AC 71 ms
64,512 KB
testcase_10 AC 230 ms
76,800 KB
testcase_11 AC 233 ms
77,200 KB
testcase_12 AC 224 ms
75,324 KB
testcase_13 AC 229 ms
76,800 KB
testcase_14 AC 228 ms
76,672 KB
testcase_15 AC 181 ms
76,928 KB
testcase_16 AC 165 ms
73,600 KB
testcase_17 AC 121 ms
71,168 KB
testcase_18 AC 46 ms
55,296 KB
testcase_19 AC 56 ms
62,976 KB
testcase_20 AC 47 ms
55,296 KB
testcase_21 AC 55 ms
63,088 KB
testcase_22 AC 53 ms
61,824 KB
testcase_23 AC 57 ms
63,744 KB
testcase_24 AC 55 ms
62,080 KB
testcase_25 AC 66 ms
67,840 KB
testcase_26 AC 64 ms
66,944 KB
testcase_27 AC 58 ms
63,744 KB
testcase_28 AC 56 ms
64,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

def fact(x):
    xr=round(x**(1/2))+1

    LIST=[]
    for i in range(1,xr+1):
        if x%i==0:
            LIST.append(i)
            LIST.append(x//i)
    return set(LIST)

from functools import lru_cache
@lru_cache(maxsize=None)
def calc(x):
    score=0
    for i in range(N):
        score+=min((x-A[i])%x,(A[i]-x)%x)

    if score<=K:
        return True
    else:
        return False


MAX=max(A)
ANS=0

for i in range(MAX-K,MAX+K+1):
    if i<=0:
        continue
    for f in fact(i):
        if calc(f)==True:
            ANS=max(ANS,f)

print(ANS)
        
    
0