結果

問題 No.1083 余りの余り
ユーザー lloyzlloyz
提出日時 2022-09-16 00:03:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 289 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,664 KB
実行使用メモリ 84,260 KB
最終ジャッジ日時 2024-12-17 17:57:11
合計ジャッジ時間 6,129 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,904 KB
testcase_01 AC 35 ms
51,944 KB
testcase_02 AC 41 ms
61,492 KB
testcase_03 AC 36 ms
52,832 KB
testcase_04 WA -
testcase_05 AC 129 ms
75,628 KB
testcase_06 AC 37 ms
52,908 KB
testcase_07 AC 46 ms
62,064 KB
testcase_08 AC 44 ms
60,416 KB
testcase_09 AC 38 ms
52,664 KB
testcase_10 AC 41 ms
60,336 KB
testcase_11 WA -
testcase_12 AC 36 ms
52,824 KB
testcase_13 AC 37 ms
52,196 KB
testcase_14 AC 36 ms
53,572 KB
testcase_15 AC 36 ms
53,352 KB
testcase_16 AC 37 ms
52,824 KB
testcase_17 AC 35 ms
53,072 KB
testcase_18 WA -
testcase_19 AC 128 ms
75,452 KB
testcase_20 AC 47 ms
61,888 KB
testcase_21 AC 53 ms
63,768 KB
testcase_22 AC 37 ms
52,348 KB
testcase_23 AC 560 ms
84,164 KB
testcase_24 AC 520 ms
83,952 KB
testcase_25 AC 511 ms
84,108 KB
testcase_26 AC 513 ms
83,956 KB
testcase_27 AC 44 ms
60,784 KB
testcase_28 WA -
testcase_29 AC 36 ms
52,280 KB
testcase_30 AC 36 ms
52,416 KB
testcase_31 AC 35 ms
53,216 KB
testcase_32 AC 39 ms
52,532 KB
testcase_33 AC 514 ms
84,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
A = list(map(int, input().split()))

DP = [0 for _ in range(1 << n)]
DP[0] = k
for bit in range(1, 1 << n):
    res = 0
    for i in range(n):
        if (bit >> i) & 1:
            res = max(res, DP[bit ^ (1 << i)] % A[i])
    DP[bit] = res
print(DP[-1])
0