結果

問題 No.1083 余りの余り
ユーザー kohei2019kohei2019
提出日時 2022-07-25 23:05:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 262 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 84,036 KB
最終ジャッジ日時 2024-07-08 01:52:57
合計ジャッジ時間 5,505 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,696 KB
testcase_01 AC 32 ms
53,300 KB
testcase_02 AC 38 ms
61,520 KB
testcase_03 AC 32 ms
51,936 KB
testcase_04 WA -
testcase_05 AC 142 ms
75,844 KB
testcase_06 AC 33 ms
52,140 KB
testcase_07 AC 39 ms
60,844 KB
testcase_08 AC 38 ms
59,744 KB
testcase_09 AC 33 ms
53,436 KB
testcase_10 AC 37 ms
60,452 KB
testcase_11 WA -
testcase_12 AC 31 ms
52,696 KB
testcase_13 AC 35 ms
52,640 KB
testcase_14 AC 32 ms
52,432 KB
testcase_15 AC 32 ms
52,992 KB
testcase_16 AC 32 ms
52,344 KB
testcase_17 AC 32 ms
52,864 KB
testcase_18 WA -
testcase_19 AC 141 ms
75,540 KB
testcase_20 AC 41 ms
62,824 KB
testcase_21 AC 51 ms
63,688 KB
testcase_22 AC 36 ms
51,956 KB
testcase_23 AC 507 ms
83,888 KB
testcase_24 AC 509 ms
84,036 KB
testcase_25 AC 510 ms
83,712 KB
testcase_26 AC 506 ms
83,764 KB
testcase_27 AC 40 ms
60,236 KB
testcase_28 WA -
testcase_29 AC 33 ms
51,888 KB
testcase_30 AC 32 ms
53,352 KB
testcase_31 AC 31 ms
52,956 KB
testcase_32 AC 31 ms
52,412 KB
testcase_33 AC 501 ms
83,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
lsA = list(map(int,input().split()))
lsA.sort()
# 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