結果

問題 No.1083 余りの余り
ユーザー ayaoniayaoni
提出日時 2020-11-22 10:09:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 379 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 84,292 KB
最終ジャッジ日時 2024-07-23 16:19:54
合計ジャッジ時間 6,449 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,252 KB
testcase_01 AC 40 ms
52,204 KB
testcase_02 AC 47 ms
61,380 KB
testcase_03 AC 38 ms
53,308 KB
testcase_04 WA -
testcase_05 AC 135 ms
75,624 KB
testcase_06 AC 40 ms
53,200 KB
testcase_07 AC 49 ms
62,316 KB
testcase_08 AC 47 ms
60,424 KB
testcase_09 AC 40 ms
53,620 KB
testcase_10 AC 46 ms
60,604 KB
testcase_11 WA -
testcase_12 AC 39 ms
52,536 KB
testcase_13 AC 39 ms
53,504 KB
testcase_14 AC 39 ms
52,888 KB
testcase_15 AC 39 ms
52,436 KB
testcase_16 AC 39 ms
52,824 KB
testcase_17 AC 39 ms
52,892 KB
testcase_18 WA -
testcase_19 AC 136 ms
75,160 KB
testcase_20 AC 49 ms
61,724 KB
testcase_21 AC 57 ms
63,444 KB
testcase_22 AC 39 ms
53,104 KB
testcase_23 AC 556 ms
83,848 KB
testcase_24 AC 557 ms
84,048 KB
testcase_25 AC 558 ms
83,816 KB
testcase_26 AC 556 ms
83,964 KB
testcase_27 AC 45 ms
60,252 KB
testcase_28 WA -
testcase_29 AC 39 ms
52,932 KB
testcase_30 AC 39 ms
52,892 KB
testcase_31 AC 39 ms
52,504 KB
testcase_32 AC 39 ms
52,492 KB
testcase_33 AC 563 ms
84,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))


N,K = MI()
A = LI()

dp = [0]*(1<<N)  # dp[i] = iを使った時の余りの最大値
dp[0] = K
for i in range(1,1<<N):
    for j in range(N):
        if (i>>j) & 1:
            dp[i] = max(dp[i],dp[i^(1<<j)] % A[j])

print(dp[-1])
0