結果

問題 No.1083 余りの余り
ユーザー tktk_snsntktk_snsn
提出日時 2020-06-19 22:38:43
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 600 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 333,344 KB
最終ジャッジ日時 2024-07-03 15:11:47
合計ジャッジ時間 11,106 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
60,068 KB
testcase_01 AC 36 ms
52,328 KB
testcase_02 AC 47 ms
64,596 KB
testcase_03 AC 35 ms
52,956 KB
testcase_04 AC 51 ms
65,696 KB
testcase_05 AC 1,249 ms
132,580 KB
testcase_06 AC 34 ms
52,284 KB
testcase_07 AC 47 ms
64,032 KB
testcase_08 AC 49 ms
63,740 KB
testcase_09 AC 42 ms
61,856 KB
testcase_10 AC 47 ms
63,480 KB
testcase_11 AC 51 ms
64,624 KB
testcase_12 AC 45 ms
62,360 KB
testcase_13 AC 45 ms
61,944 KB
testcase_14 AC 36 ms
52,696 KB
testcase_15 AC 36 ms
52,528 KB
testcase_16 AC 35 ms
53,192 KB
testcase_17 AC 35 ms
52,208 KB
testcase_18 AC 2,707 ms
193,508 KB
testcase_19 AC 1,257 ms
132,668 KB
testcase_20 AC 60 ms
70,304 KB
testcase_21 AC 156 ms
82,392 KB
testcase_22 AC 36 ms
52,068 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 #

def main():
    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)


if __name__ == "__main__":
    main()
0