結果

問題 No.1083 余りの余り
ユーザー wattaiheiwattaihei
提出日時 2020-06-19 22:39:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 544 ms / 3,000 ms
コード長 289 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 76,236 KB
最終ジャッジ日時 2024-07-03 15:12:10
合計ジャッジ時間 6,263 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,796 KB
testcase_01 AC 36 ms
52,024 KB
testcase_02 AC 41 ms
60,816 KB
testcase_03 AC 36 ms
52,668 KB
testcase_04 AC 41 ms
60,196 KB
testcase_05 AC 127 ms
73,460 KB
testcase_06 AC 35 ms
53,040 KB
testcase_07 AC 43 ms
61,212 KB
testcase_08 AC 41 ms
59,968 KB
testcase_09 AC 36 ms
52,488 KB
testcase_10 AC 42 ms
61,108 KB
testcase_11 AC 43 ms
61,456 KB
testcase_12 AC 37 ms
52,572 KB
testcase_13 AC 36 ms
53,412 KB
testcase_14 AC 35 ms
51,956 KB
testcase_15 AC 36 ms
52,160 KB
testcase_16 AC 36 ms
52,592 KB
testcase_17 AC 36 ms
52,460 KB
testcase_18 AC 218 ms
75,820 KB
testcase_19 AC 126 ms
72,740 KB
testcase_20 AC 43 ms
60,300 KB
testcase_21 AC 51 ms
62,252 KB
testcase_22 AC 35 ms
52,264 KB
testcase_23 AC 542 ms
75,784 KB
testcase_24 AC 544 ms
75,756 KB
testcase_25 AC 543 ms
75,640 KB
testcase_26 AC 540 ms
75,756 KB
testcase_27 AC 42 ms
60,220 KB
testcase_28 AC 541 ms
76,236 KB
testcase_29 AC 36 ms
53,132 KB
testcase_30 AC 36 ms
52,028 KB
testcase_31 AC 35 ms
52,736 KB
testcase_32 AC 35 ms
51,952 KB
testcase_33 AC 540 ms
75,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, K = map(int, input().split())
A = list(map(int, input().split()))


A.sort(reverse=True)
ans = 0
for bit in range(1<<N):
    p = K
    for i in range(N):
        if bit&(1<<i):
            p %= A[i]
    p %= A[-1]
    ans = max(ans, p)

print(ans)
0