結果

問題 No.1083 余りの余り
ユーザー buey_tbuey_t
提出日時 2023-03-18 18:07:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 553 ms / 3,000 ms
コード長 1,604 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 90,368 KB
最終ジャッジ日時 2024-09-18 13:27:23
合計ジャッジ時間 8,410 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
84,992 KB
testcase_01 AC 111 ms
85,120 KB
testcase_02 AC 127 ms
90,108 KB
testcase_03 AC 113 ms
85,120 KB
testcase_04 AC 130 ms
89,728 KB
testcase_05 AC 195 ms
90,240 KB
testcase_06 AC 116 ms
85,120 KB
testcase_07 AC 128 ms
90,240 KB
testcase_08 AC 125 ms
89,856 KB
testcase_09 AC 110 ms
84,992 KB
testcase_10 AC 129 ms
89,856 KB
testcase_11 AC 125 ms
89,984 KB
testcase_12 AC 110 ms
84,992 KB
testcase_13 AC 112 ms
84,992 KB
testcase_14 AC 111 ms
84,992 KB
testcase_15 AC 111 ms
85,120 KB
testcase_16 AC 115 ms
85,120 KB
testcase_17 AC 109 ms
84,864 KB
testcase_18 AC 269 ms
90,112 KB
testcase_19 AC 196 ms
89,984 KB
testcase_20 AC 127 ms
90,112 KB
testcase_21 AC 135 ms
89,856 KB
testcase_22 AC 114 ms
84,736 KB
testcase_23 AC 546 ms
89,984 KB
testcase_24 AC 550 ms
89,984 KB
testcase_25 AC 547 ms
90,100 KB
testcase_26 AC 553 ms
89,984 KB
testcase_27 AC 128 ms
90,240 KB
testcase_28 AC 544 ms
90,076 KB
testcase_29 AC 110 ms
85,120 KB
testcase_30 AC 111 ms
84,736 KB
testcase_31 AC 127 ms
84,736 KB
testcase_32 AC 119 ms
85,352 KB
testcase_33 AC 535 ms
90,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    try:
        import pypyjit
        pypyjit.set_param('max_unroll_recursion=-1')
    except:
        pass
    try:
        import sys
        sys.setrecursionlimit(10**7)
    except:
        pass
    from math import sqrt,sin,cos,tan,ceil,radians,floor,gcd,exp,log,log10,log2,factorial,fsum
    from heapq import heapify, heappop, heappush
    from bisect import bisect_left, bisect_right
    from copy import deepcopy
    import copy
    import random
    from collections import deque,Counter,defaultdict
    from itertools import permutations,combinations
    from decimal import Decimal,ROUND_HALF_UP
    #tmp = Decimal(mid).quantize(Decimal('0'), rounding=ROUND_HALF_UP)
    from functools import lru_cache, reduce
    #@lru_cache(maxsize=None)
    from operator import add,sub,mul,xor,and_,or_,itemgetter
    INF = 10**18
    mod1 = 10**9+7
    mod2 = 998244353
    
    #DecimalならPython
    
    
    '''
    まあ余りが-1になればよいんだよな
    降順ソートして全探索か
    えぐいな
    
    
    '''
    
    N,K = map(int, input().split())
    A = list(map(int, input().split()))
    
    A.sort(reverse=True)
    ans = 0
    
    for i in range(2**N):
        now = K
        for j in range(N):
            if (i>>j)&1:
                now %= A[j]
        now %= A[-1]
        ans = max(ans, now)
    
    print(ans)
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
if __name__ == '__main__':
    main()
0