結果

問題 No.1083 余りの余り
ユーザー ttrttr
提出日時 2020-06-19 22:05:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 593 ms / 3,000 ms
コード長 397 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 76,252 KB
最終ジャッジ日時 2024-07-03 14:47:53
合計ジャッジ時間 6,243 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,520 KB
testcase_01 AC 36 ms
53,308 KB
testcase_02 AC 35 ms
52,888 KB
testcase_03 AC 35 ms
52,996 KB
testcase_04 AC 71 ms
62,540 KB
testcase_05 AC 176 ms
76,248 KB
testcase_06 AC 35 ms
52,132 KB
testcase_07 AC 46 ms
60,292 KB
testcase_08 AC 35 ms
53,304 KB
testcase_09 AC 36 ms
52,744 KB
testcase_10 AC 36 ms
54,588 KB
testcase_11 AC 43 ms
61,720 KB
testcase_12 AC 36 ms
54,016 KB
testcase_13 AC 37 ms
52,800 KB
testcase_14 AC 38 ms
53,288 KB
testcase_15 AC 36 ms
52,460 KB
testcase_16 AC 36 ms
52,992 KB
testcase_17 AC 36 ms
52,528 KB
testcase_18 AC 300 ms
76,184 KB
testcase_19 AC 181 ms
76,020 KB
testcase_20 AC 47 ms
64,404 KB
testcase_21 AC 64 ms
76,216 KB
testcase_22 AC 38 ms
52,224 KB
testcase_23 AC 593 ms
76,160 KB
testcase_24 AC 583 ms
76,248 KB
testcase_25 AC 588 ms
76,012 KB
testcase_26 AC 590 ms
76,052 KB
testcase_27 AC 38 ms
52,736 KB
testcase_28 AC 493 ms
75,904 KB
testcase_29 AC 36 ms
52,704 KB
testcase_30 AC 39 ms
52,688 KB
testcase_31 AC 37 ms
52,540 KB
testcase_32 AC 35 ms
53,316 KB
testcase_33 AC 585 ms
76,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
N,K = map(int, input().split())
A = [int(a) for a in input().split()]

s = min(A)
cnt = A.count(s)
ans = 0
for i in range(1, N+1):
    for C in itertools.combinations(A, i):
        num = K
        C = list(C)
        C.sort(reverse=True)
        for c in C:
            num %= c
        for _ in range(cnt-C.count(s)):
            num %= s
        ans = max(ans, num)

print(ans)
0