結果

問題 No.1083 余りの余り
ユーザー brthyyjpbrthyyjp
提出日時 2020-06-25 01:00:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 213 ms / 3,000 ms
コード長 334 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 76,216 KB
最終ジャッジ日時 2024-07-03 20:32:41
合計ジャッジ時間 4,141 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,944 KB
testcase_01 AC 37 ms
52,192 KB
testcase_02 AC 37 ms
53,352 KB
testcase_03 AC 39 ms
52,556 KB
testcase_04 AC 43 ms
60,512 KB
testcase_05 AC 86 ms
67,052 KB
testcase_06 AC 37 ms
52,964 KB
testcase_07 AC 41 ms
60,216 KB
testcase_08 AC 37 ms
52,268 KB
testcase_09 AC 39 ms
52,208 KB
testcase_10 AC 37 ms
53,008 KB
testcase_11 AC 42 ms
61,132 KB
testcase_12 AC 37 ms
53,568 KB
testcase_13 AC 38 ms
52,760 KB
testcase_14 AC 37 ms
53,364 KB
testcase_15 AC 37 ms
52,272 KB
testcase_16 AC 36 ms
53,308 KB
testcase_17 AC 36 ms
53,368 KB
testcase_18 AC 123 ms
74,188 KB
testcase_19 AC 86 ms
68,188 KB
testcase_20 AC 43 ms
60,208 KB
testcase_21 AC 46 ms
60,704 KB
testcase_22 AC 37 ms
52,852 KB
testcase_23 AC 210 ms
75,940 KB
testcase_24 AC 213 ms
76,216 KB
testcase_25 AC 212 ms
75,748 KB
testcase_26 AC 211 ms
75,988 KB
testcase_27 AC 36 ms
53,616 KB
testcase_28 AC 211 ms
75,936 KB
testcase_29 AC 38 ms
52,452 KB
testcase_30 AC 36 ms
52,076 KB
testcase_31 AC 36 ms
53,408 KB
testcase_32 AC 35 ms
52,132 KB
testcase_33 AC 208 ms
75,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
A = list(map(int, input().split()))

if n == 1:
    print(k%A[0])
    exit()

A.sort(reverse=True)
min_a = A[-1]
A = A[:-1]
ans = -1
for i in range(2**(n-1)):
    temp = k
    for j in range(n-1):
        if (i >> j) & 1:
            temp %= A[j]
    temp %= min_a
    ans = max(temp, ans)
print(ans)
0