結果

問題 No.1083 余りの余り
ユーザー H3PO4H3PO4
提出日時 2020-08-05 09:14:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,767 ms / 3,000 ms
コード長 307 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-15 20:18:45
合計ジャッジ時間 14,159 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 427 ms
10,624 KB
testcase_06 AC 29 ms
10,496 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 29 ms
10,496 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 29 ms
10,624 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 29 ms
10,624 KB
testcase_17 AC 29 ms
10,496 KB
testcase_18 AC 832 ms
10,624 KB
testcase_19 AC 430 ms
10,496 KB
testcase_20 AC 34 ms
10,624 KB
testcase_21 AC 73 ms
10,624 KB
testcase_22 AC 29 ms
10,496 KB
testcase_23 AC 1,741 ms
10,496 KB
testcase_24 AC 1,767 ms
10,624 KB
testcase_25 AC 1,696 ms
10,752 KB
testcase_26 AC 1,658 ms
10,624 KB
testcase_27 AC 30 ms
10,752 KB
testcase_28 AC 1,760 ms
10,624 KB
testcase_29 AC 30 ms
10,624 KB
testcase_30 AC 30 ms
10,624 KB
testcase_31 AC 30 ms
10,624 KB
testcase_32 AC 30 ms
10,752 KB
testcase_33 AC 1,530 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

N, K = map(int, input().split())
A = sorted(list(map(int, input().split())), reverse=True)
minA = A[-1]

ans = 0
for t in itertools.product((0, 1), repeat=N - 1):
    X = itertools.compress(A[:-1], t)
    k = K
    for x in X:
        k %= x
    k %= minA
    ans = max(ans, k)
print(ans)
0