結果

問題 No.1083 余りの余り
ユーザー kohei2019kohei2019
提出日時 2022-07-25 23:36:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 253 ms / 3,000 ms
コード長 375 bytes
コンパイル時間 677 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 76,212 KB
最終ジャッジ日時 2024-07-08 02:24:18
合計ジャッジ時間 3,745 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,836 KB
testcase_01 AC 34 ms
51,808 KB
testcase_02 AC 34 ms
52,692 KB
testcase_03 AC 32 ms
53,000 KB
testcase_04 AC 42 ms
62,608 KB
testcase_05 AC 92 ms
75,964 KB
testcase_06 AC 32 ms
52,900 KB
testcase_07 AC 38 ms
60,636 KB
testcase_08 AC 32 ms
53,480 KB
testcase_09 AC 33 ms
53,068 KB
testcase_10 AC 35 ms
52,732 KB
testcase_11 AC 42 ms
59,820 KB
testcase_12 AC 33 ms
52,612 KB
testcase_13 AC 34 ms
52,472 KB
testcase_14 AC 34 ms
52,340 KB
testcase_15 AC 34 ms
52,036 KB
testcase_16 AC 31 ms
53,252 KB
testcase_17 AC 32 ms
52,816 KB
testcase_18 AC 142 ms
76,024 KB
testcase_19 AC 94 ms
75,992 KB
testcase_20 AC 43 ms
62,904 KB
testcase_21 AC 48 ms
68,708 KB
testcase_22 AC 34 ms
52,660 KB
testcase_23 AC 250 ms
76,164 KB
testcase_24 AC 240 ms
75,988 KB
testcase_25 AC 239 ms
76,044 KB
testcase_26 AC 244 ms
76,212 KB
testcase_27 AC 33 ms
53,068 KB
testcase_28 AC 240 ms
76,100 KB
testcase_29 AC 34 ms
52,560 KB
testcase_30 AC 33 ms
52,328 KB
testcase_31 AC 32 ms
53,132 KB
testcase_32 AC 32 ms
53,436 KB
testcase_33 AC 253 ms
75,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
lsA = list(map(int,input().split()))
# bit全探索
lsA.sort(reverse=True)
minA = lsA[-1]
lsA2 = lsA[:-1]
NN = len(lsA2)

ans = 0
for i in range(2**NN):
    ll = []
    for j in range(NN):
        if (i>>j) & 1:
            ll.append(lsA2[j])
    c = K
    for j in range(len(ll)):
        c %= ll[j]
    c%=minA
    ans = max(ans,c)
print(ans)
0