結果

問題 No.1083 余りの余り
ユーザー uni_pythonuni_python
提出日時 2020-06-19 22:16:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 489 ms / 3,000 ms
コード長 504 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 76,012 KB
最終ジャッジ日時 2024-07-03 14:55:29
合計ジャッジ時間 5,366 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))
mod=10**9+7

def main():
    N,K=MI()
    A=LI()
    A.sort(reverse=True)
    
    ans=0
    M=pow(2,N)
    
    for i in range(1,M):
        temp=K
        for j in range(N):
            if i>>j&1:
                temp=temp%A[j]
                
        ans=max(ans,temp%A[-1])
                
            
    print(ans)
    
    
    


main()
0