結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,684 KB
testcase_01 AC 34 ms
53,240 KB
testcase_02 AC 40 ms
61,024 KB
testcase_03 AC 35 ms
53,488 KB
testcase_04 AC 42 ms
61,264 KB
testcase_05 AC 124 ms
75,660 KB
testcase_06 AC 34 ms
53,424 KB
testcase_07 AC 41 ms
59,868 KB
testcase_08 AC 42 ms
59,840 KB
testcase_09 AC 35 ms
53,140 KB
testcase_10 AC 44 ms
61,228 KB
testcase_11 AC 44 ms
61,272 KB
testcase_12 AC 36 ms
52,444 KB
testcase_13 AC 34 ms
52,484 KB
testcase_14 AC 35 ms
52,960 KB
testcase_15 AC 35 ms
52,684 KB
testcase_16 AC 35 ms
53,116 KB
testcase_17 AC 34 ms
53,076 KB
testcase_18 AC 206 ms
75,980 KB
testcase_19 AC 124 ms
75,504 KB
testcase_20 AC 42 ms
61,760 KB
testcase_21 AC 50 ms
67,100 KB
testcase_22 AC 35 ms
52,932 KB
testcase_23 AC 484 ms
75,628 KB
testcase_24 AC 489 ms
75,740 KB
testcase_25 AC 480 ms
75,840 KB
testcase_26 AC 481 ms
75,872 KB
testcase_27 AC 42 ms
59,692 KB
testcase_28 AC 481 ms
76,012 KB
testcase_29 AC 36 ms
52,548 KB
testcase_30 AC 38 ms
52,212 KB
testcase_31 AC 35 ms
52,196 KB
testcase_32 AC 34 ms
52,128 KB
testcase_33 AC 484 ms
75,844 KB
権限があれば一括ダウンロードができます

ソースコード

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