結果

問題 No.2570 最大最大公約数
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-12-02 15:41:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,078 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 64,288 KB
最終ジャッジ日時 2024-11-13 17:13:56
合計ジャッジ時間 6,954 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,078 ms
63,340 KB
testcase_01 AC 167 ms
63,020 KB
testcase_02 AC 186 ms
62,900 KB
testcase_03 AC 206 ms
63,580 KB
testcase_04 AC 117 ms
63,336 KB
testcase_05 AC 152 ms
64,276 KB
testcase_06 AC 186 ms
63,464 KB
testcase_07 AC 178 ms
63,420 KB
testcase_08 AC 196 ms
63,944 KB
testcase_09 AC 213 ms
63,328 KB
testcase_10 AC 162 ms
62,832 KB
testcase_11 AC 211 ms
63,088 KB
testcase_12 AC 141 ms
64,288 KB
testcase_13 AC 206 ms
64,116 KB
testcase_14 AC 82 ms
63,132 KB
testcase_15 AC 208 ms
64,252 KB
testcase_16 AC 212 ms
63,880 KB
testcase_17 AC 195 ms
63,112 KB
testcase_18 AC 39 ms
52,484 KB
testcase_19 AC 49 ms
61,092 KB
testcase_20 AC 51 ms
62,364 KB
testcase_21 AC 49 ms
62,884 KB
testcase_22 AC 51 ms
61,768 KB
testcase_23 AC 50 ms
61,340 KB
testcase_24 AC 49 ms
61,292 KB
testcase_25 AC 51 ms
62,836 KB
testcase_26 AC 49 ms
61,040 KB
testcase_27 AC 50 ms
61,488 KB
testcase_28 AC 50 ms
62,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
A=list(map(int,input().split()))
ans=0
cha=set()
for i in range(max(1,A[0]-102),A[0]+102):
    for j in range(1,i+1):
        if j*j>i:
            break
        if i%j==0:
            cha.add(j)
            cha.add(i//j)
for i in cha:
    now=0
    for j in A:
        now+=min(j%i,(-j)%i)
    if now<=K:
        ans=max(ans,i)
print(ans)
0