結果

問題 No.1083 余りの余り
ユーザー FromBooskaFromBooska
提出日時 2023-02-14 19:15:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 218 ms / 3,000 ms
コード長 894 bytes
コンパイル時間 439 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 75,932 KB
最終ジャッジ日時 2024-07-17 07:41:59
合計ジャッジ時間 4,434 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,572 KB
testcase_01 AC 38 ms
51,688 KB
testcase_02 AC 39 ms
53,560 KB
testcase_03 AC 38 ms
53,704 KB
testcase_04 AC 45 ms
60,328 KB
testcase_05 AC 85 ms
66,136 KB
testcase_06 AC 39 ms
53,024 KB
testcase_07 AC 45 ms
59,712 KB
testcase_08 AC 39 ms
52,000 KB
testcase_09 AC 39 ms
52,352 KB
testcase_10 AC 39 ms
52,428 KB
testcase_11 AC 44 ms
59,400 KB
testcase_12 AC 39 ms
52,952 KB
testcase_13 AC 40 ms
51,684 KB
testcase_14 AC 39 ms
52,464 KB
testcase_15 AC 39 ms
52,148 KB
testcase_16 AC 39 ms
52,024 KB
testcase_17 AC 37 ms
52,808 KB
testcase_18 AC 126 ms
72,356 KB
testcase_19 AC 87 ms
66,092 KB
testcase_20 AC 46 ms
60,276 KB
testcase_21 AC 49 ms
61,248 KB
testcase_22 AC 39 ms
53,620 KB
testcase_23 AC 217 ms
75,352 KB
testcase_24 AC 218 ms
75,768 KB
testcase_25 AC 214 ms
75,132 KB
testcase_26 AC 215 ms
75,620 KB
testcase_27 AC 40 ms
51,864 KB
testcase_28 AC 215 ms
75,932 KB
testcase_29 AC 38 ms
51,952 KB
testcase_30 AC 39 ms
52,636 KB
testcase_31 AC 40 ms
53,020 KB
testcase_32 AC 38 ms
52,972 KB
testcase_33 AC 48 ms
61,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# Aの最小値未満の整数値で一番大きい数字になるmodで最初に割る、それがキープされる
# というのでは不足
# Ai < AjのときK mod Ai mod Aj = K mod Ai
# だがK mod Aj mod Ai は K mod Ai nor K mod Aj
# つまりAを降順に並べたとき、大きいほうから使うか使わないかの2択がある
# それをビット全探索する、しかし最後はmod Aminが必要
# また、Ai=Ajならば1つだけでいい

N, K = map(int, input().split())
A = list(map(int, input().split()))
A_set = set(A)
A_list = list(A_set)
A_sorted = sorted(A_list, reverse = True)
A_bruteforce = A_sorted[:-1]

ans = 0
for bit in range(1<<len(A_bruteforce)):
    k = K
    for shift in range(len(A_bruteforce)):
        if bit>>shift & 1 == 1:
            k %= A_bruteforce[shift]
    k %= A_sorted[-1]
    ans = max(ans, k)
    #print(bin(bit), k)
print(ans)




0