結果

問題 No.1083 余りの余り
ユーザー ttrttr
提出日時 2020-06-19 21:58:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 389 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 76,480 KB
最終ジャッジ日時 2024-07-03 14:28:37
合計ジャッジ時間 6,477 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,564 KB
testcase_01 AC 37 ms
52,216 KB
testcase_02 AC 37 ms
53,724 KB
testcase_03 AC 36 ms
52,264 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 36 ms
52,196 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 36 ms
52,660 KB
testcase_10 AC 37 ms
53,024 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 35 ms
52,924 KB
testcase_15 AC 35 ms
53,204 KB
testcase_16 AC 35 ms
52,596 KB
testcase_17 AC 35 ms
52,944 KB
testcase_18 WA -
testcase_19 AC 181 ms
76,480 KB
testcase_20 WA -
testcase_21 AC 65 ms
76,224 KB
testcase_22 AC 35 ms
53,500 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 39 ms
53,692 KB
testcase_28 WA -
testcase_29 AC 35 ms
52,748 KB
testcase_30 AC 36 ms
52,640 KB
testcase_31 AC 35 ms
53,188 KB
testcase_32 AC 38 ms
52,988 KB
testcase_33 AC 633 ms
76,284 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):
    num = K
    for C in itertools.combinations(A, i):
        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