結果

問題 No.1083 余りの余り
ユーザー tassei903tassei903
提出日時 2021-09-30 10:25:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 283 ms / 3,000 ms
コード長 573 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 76,044 KB
最終ジャッジ日時 2024-07-17 13:46:03
合計ジャッジ時間 4,658 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,680 KB
testcase_01 AC 38 ms
52,472 KB
testcase_02 AC 39 ms
52,576 KB
testcase_03 AC 38 ms
52,148 KB
testcase_04 AC 44 ms
60,944 KB
testcase_05 AC 85 ms
68,400 KB
testcase_06 AC 41 ms
52,936 KB
testcase_07 AC 42 ms
59,644 KB
testcase_08 AC 38 ms
53,748 KB
testcase_09 AC 38 ms
52,624 KB
testcase_10 AC 37 ms
52,992 KB
testcase_11 AC 43 ms
61,160 KB
testcase_12 AC 38 ms
53,348 KB
testcase_13 AC 39 ms
52,688 KB
testcase_14 AC 38 ms
52,336 KB
testcase_15 AC 39 ms
52,488 KB
testcase_16 AC 39 ms
52,764 KB
testcase_17 AC 38 ms
52,604 KB
testcase_18 AC 126 ms
73,324 KB
testcase_19 AC 84 ms
67,024 KB
testcase_20 AC 46 ms
61,004 KB
testcase_21 AC 49 ms
62,496 KB
testcase_22 AC 38 ms
52,264 KB
testcase_23 AC 283 ms
76,044 KB
testcase_24 AC 280 ms
75,824 KB
testcase_25 AC 281 ms
75,740 KB
testcase_26 AC 282 ms
75,908 KB
testcase_27 AC 38 ms
52,564 KB
testcase_28 AC 282 ms
75,936 KB
testcase_29 AC 37 ms
52,756 KB
testcase_30 AC 38 ms
52,624 KB
testcase_31 AC 38 ms
53,816 KB
testcase_32 AC 37 ms
52,832 KB
testcase_33 AC 281 ms
75,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
sys.setrecursionlimit(10**7)
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

n,k = na()
a = sorted(na())[::-1]
ans = 0
for i in range(1<<(n-1)):
    x = k
    for j in range(n):
        if i>>j&1:
            x %= a[j]
    x %= a[-1]
    ans = max(ans, x)
print(ans)
0