結果

問題 No.1083 余りの余り
ユーザー tanon710tanon710
提出日時 2020-06-20 00:10:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 622 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 216,984 KB
最終ジャッジ日時 2024-07-03 16:16:35
合計ジャッジ時間 12,199 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 48 ms
61,952 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 WA -
testcase_05 AC 321 ms
116,632 KB
testcase_06 AC 36 ms
53,068 KB
testcase_07 AC 51 ms
63,584 KB
testcase_08 AC 48 ms
61,824 KB
testcase_09 AC 38 ms
52,736 KB
testcase_10 AC 47 ms
61,824 KB
testcase_11 WA -
testcase_12 AC 38 ms
52,736 KB
testcase_13 AC 38 ms
52,224 KB
testcase_14 AC 37 ms
51,712 KB
testcase_15 AC 36 ms
51,712 KB
testcase_16 AC 37 ms
51,712 KB
testcase_17 AC 38 ms
52,480 KB
testcase_18 WA -
testcase_19 AC 307 ms
116,788 KB
testcase_20 AC 58 ms
66,916 KB
testcase_21 AC 81 ms
78,208 KB
testcase_22 AC 37 ms
51,968 KB
testcase_23 AC 1,446 ms
216,664 KB
testcase_24 AC 1,442 ms
216,984 KB
testcase_25 AC 1,420 ms
216,720 KB
testcase_26 AC 1,449 ms
216,600 KB
testcase_27 AC 47 ms
61,688 KB
testcase_28 WA -
testcase_29 AC 36 ms
52,936 KB
testcase_30 AC 36 ms
53,152 KB
testcase_31 AC 36 ms
53,068 KB
testcase_32 AC 37 ms
52,652 KB
testcase_33 AC 1,446 ms
216,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
arr=list(map(int,input().split()))
vals=[[0]]
s=set()
s.add(0)
for i in range(1,n):
    tmp=[]
    for val in vals[-1]:
        for j in range(n):
            if val&(1<<j):
                continue
            if val+(1<<j) in s:
                continue
            tmp.append(val+(1<<j))
            s.add(val+(1<<j))
    vals.append(tmp)
v=[]
for i in range(n):
    for val in vals[i]:
        v.append(val)
v.append(2**n-1)
dp=[0]*(2**n)
dp[0]=k
for i in v:
    for j in range(n):
        if i&(1<<j):
            continue
        dp[i+(1<<j)]=max(dp[i+(1<<j)],dp[i]%arr[j])
print(dp[-1])
0