結果

問題 No.1083 余りの余り
ユーザー kohei2019kohei2019
提出日時 2022-07-25 23:08:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 275 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 83,944 KB
最終ジャッジ日時 2024-07-08 01:56:49
合計ジャッジ時間 5,521 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,116 KB
testcase_01 AC 33 ms
53,132 KB
testcase_02 AC 40 ms
60,864 KB
testcase_03 AC 32 ms
52,080 KB
testcase_04 WA -
testcase_05 AC 140 ms
75,784 KB
testcase_06 AC 35 ms
52,956 KB
testcase_07 AC 41 ms
61,848 KB
testcase_08 AC 39 ms
60,436 KB
testcase_09 AC 33 ms
52,456 KB
testcase_10 AC 39 ms
61,252 KB
testcase_11 WA -
testcase_12 AC 32 ms
53,780 KB
testcase_13 AC 32 ms
54,120 KB
testcase_14 AC 32 ms
53,008 KB
testcase_15 AC 32 ms
52,208 KB
testcase_16 AC 32 ms
53,596 KB
testcase_17 AC 33 ms
52,480 KB
testcase_18 WA -
testcase_19 AC 142 ms
76,020 KB
testcase_20 AC 44 ms
62,360 KB
testcase_21 AC 50 ms
63,644 KB
testcase_22 AC 33 ms
52,628 KB
testcase_23 AC 497 ms
83,804 KB
testcase_24 AC 500 ms
83,740 KB
testcase_25 AC 505 ms
83,620 KB
testcase_26 AC 504 ms
83,836 KB
testcase_27 AC 40 ms
61,480 KB
testcase_28 WA -
testcase_29 AC 34 ms
52,188 KB
testcase_30 AC 34 ms
52,644 KB
testcase_31 AC 33 ms
52,456 KB
testcase_32 AC 33 ms
52,848 KB
testcase_33 AC 510 ms
83,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
lsA = list(map(int,input().split()))
lsA.sort(reverse=True)
# bitDP?
dp = [0]*(2**N)
dp[0] = K

for i in range(2**N):
    for j in range(N):
        if (1<<j & i) == 0:
            dp[i|(1<<j)] = max(dp[i|(1<<j)],dp[i] % lsA[j])

print(dp[-1])
0