結果

問題 No.2570 最大最大公約数
ユーザー prd_xxxprd_xxx
提出日時 2023-12-02 16:53:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 501 ms / 2,000 ms
コード長 525 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 100,864 KB
最終ジャッジ日時 2024-11-13 17:15:11
合計ジャッジ時間 4,812 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 501 ms
65,152 KB
testcase_01 AC 93 ms
59,904 KB
testcase_02 AC 101 ms
60,544 KB
testcase_03 AC 109 ms
59,904 KB
testcase_04 AC 72 ms
59,904 KB
testcase_05 AC 114 ms
75,904 KB
testcase_06 AC 142 ms
90,496 KB
testcase_07 AC 150 ms
94,976 KB
testcase_08 AC 101 ms
64,896 KB
testcase_09 AC 101 ms
65,664 KB
testcase_10 AC 149 ms
100,224 KB
testcase_11 AC 150 ms
100,608 KB
testcase_12 AC 149 ms
100,352 KB
testcase_13 AC 154 ms
100,096 KB
testcase_14 AC 150 ms
100,864 KB
testcase_15 AC 105 ms
73,984 KB
testcase_16 AC 103 ms
71,808 KB
testcase_17 AC 95 ms
69,248 KB
testcase_18 AC 39 ms
51,968 KB
testcase_19 AC 46 ms
60,244 KB
testcase_20 AC 42 ms
58,112 KB
testcase_21 AC 43 ms
58,496 KB
testcase_22 AC 45 ms
59,136 KB
testcase_23 AC 44 ms
58,496 KB
testcase_24 AC 43 ms
58,880 KB
testcase_25 AC 53 ms
62,848 KB
testcase_26 AC 50 ms
61,312 KB
testcase_27 AC 44 ms
58,368 KB
testcase_28 AC 44 ms
58,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

divs = set()
for a in A:
    m = 1
    while m*m <= a:
        if N%m==0:
            divs.add(m)
            divs.add(a//m)
        m += 1

cands = set()
for d in divs:
    for i in range(-K,K+1):
        if d+i > 0:
            cands.add(d+i)

for g in sorted(cands, reverse=True):
    cnt = 0
    for a in A:
        tmp = -a%g
        if a > g:
            tmp = min(tmp, a%g)
        cnt += tmp
        if cnt > K: break
    else:
        exit(print(g))
0