結果

問題 No.1083 余りの余り
ユーザー tktk_snsntktk_snsn
提出日時 2020-06-19 22:37:12
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 492 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,720 KB
実行使用メモリ 333,144 KB
最終ジャッジ日時 2024-07-03 15:10:48
合計ジャッジ時間 10,532 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
60,000 KB
testcase_01 AC 37 ms
52,344 KB
testcase_02 AC 47 ms
64,068 KB
testcase_03 AC 34 ms
54,260 KB
testcase_04 AC 48 ms
64,600 KB
testcase_05 AC 1,118 ms
132,852 KB
testcase_06 AC 36 ms
52,568 KB
testcase_07 AC 51 ms
64,084 KB
testcase_08 AC 50 ms
65,016 KB
testcase_09 AC 48 ms
61,744 KB
testcase_10 AC 53 ms
65,060 KB
testcase_11 AC 54 ms
63,656 KB
testcase_12 AC 46 ms
61,620 KB
testcase_13 AC 46 ms
63,296 KB
testcase_14 AC 37 ms
53,656 KB
testcase_15 AC 37 ms
52,468 KB
testcase_16 AC 37 ms
52,472 KB
testcase_17 AC 35 ms
53,220 KB
testcase_18 AC 2,409 ms
193,872 KB
testcase_19 AC 1,108 ms
132,616 KB
testcase_20 AC 60 ms
67,308 KB
testcase_21 AC 143 ms
82,548 KB
testcase_22 AC 35 ms
53,076 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [[0] * N for _ in range(1 << N)]
for i, a in enumerate(A):
    dp[1 << i][i] = K % a

for bit in range(1 << N):
    for i in range(N):
        if (bit >> i) & 1:
            for j, a in enumerate(A):
                if ~(bit >> j) & 1:
                    bit_next = bit | (1 << j)
                    dp[bit_next][j] = max(dp[bit_next][j], dp[bit][i] % a)

ans = max(dp[(1 << N) - 1][i] for i in range(N))
print(ans)
0