結果

問題 No.2570 最大最大公約数
ユーザー timitimi
提出日時 2023-12-05 10:24:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 519 ms / 2,000 ms
コード長 576 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 63,872 KB
最終ジャッジ日時 2024-11-13 17:16:20
合計ジャッジ時間 4,399 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 519 ms
63,872 KB
testcase_01 AC 96 ms
61,568 KB
testcase_02 AC 104 ms
60,800 KB
testcase_03 AC 111 ms
60,800 KB
testcase_04 AC 74 ms
61,056 KB
testcase_05 AC 98 ms
61,824 KB
testcase_06 AC 98 ms
62,084 KB
testcase_07 AC 103 ms
61,696 KB
testcase_08 AC 103 ms
61,312 KB
testcase_09 AC 100 ms
61,696 KB
testcase_10 AC 98 ms
61,568 KB
testcase_11 AC 98 ms
62,080 KB
testcase_12 AC 97 ms
62,080 KB
testcase_13 AC 105 ms
61,440 KB
testcase_14 AC 102 ms
61,952 KB
testcase_15 AC 91 ms
61,184 KB
testcase_16 AC 91 ms
61,312 KB
testcase_17 AC 87 ms
61,440 KB
testcase_18 AC 39 ms
52,480 KB
testcase_19 AC 47 ms
59,904 KB
testcase_20 AC 46 ms
59,904 KB
testcase_21 AC 43 ms
59,008 KB
testcase_22 AC 47 ms
60,288 KB
testcase_23 AC 45 ms
58,624 KB
testcase_24 AC 42 ms
58,112 KB
testcase_25 AC 49 ms
59,520 KB
testcase_26 AC 47 ms
59,904 KB
testcase_27 AC 46 ms
59,264 KB
testcase_28 AC 45 ms
59,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def make_divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]

B=[]
for a in A:
  for b in make_divisors(a):
    B.append(b)

B=sorted(list(set(B)))
ans=1
for b in B:
  if b==1:
    continue 
  c=0
  for a in A:
    cc=a%b 
    c+=min(cc,b-cc)
  if c<=K:
    ans=b
print(ans)
    
0