結果

問題 No.1083 余りの余り
ユーザー kurimupykurimupy
提出日時 2020-06-19 21:44:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 384 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 84,224 KB
最終ジャッジ日時 2024-07-03 14:13:02
合計ジャッジ時間 11,618 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 WA -
testcase_03 AC 37 ms
52,096 KB
testcase_04 WA -
testcase_05 AC 340 ms
78,080 KB
testcase_06 AC 35 ms
51,584 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 36 ms
52,736 KB
testcase_10 WA -
testcase_11 AC 48 ms
63,872 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 35 ms
51,712 KB
testcase_15 AC 34 ms
51,840 KB
testcase_16 AC 36 ms
52,224 KB
testcase_17 AC 35 ms
52,608 KB
testcase_18 WA -
testcase_19 AC 334 ms
78,208 KB
testcase_20 WA -
testcase_21 AC 86 ms
76,032 KB
testcase_22 AC 35 ms
52,224 KB
testcase_23 WA -
testcase_24 AC 1,387 ms
84,224 KB
testcase_25 AC 1,341 ms
84,068 KB
testcase_26 AC 1,317 ms
83,968 KB
testcase_27 AC 45 ms
61,684 KB
testcase_28 WA -
testcase_29 AC 35 ms
52,096 KB
testcase_30 AC 35 ms
52,224 KB
testcase_31 AC 35 ms
51,712 KB
testcase_32 AC 35 ms
51,712 KB
testcase_33 AC 1,359 ms
84,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
ans=0
A=list(map(int,input().split()))
#bitdp (2**N N)
dp=[0 for i in range(2**N)]
#dp["0010101101"] := ex).A_2,,,,,,A_8を並び替えたときの考えうる最もいい最大値
dp[0]=K
for i in range(1,2**N):
    x=format(i,"0%ib"%N)[::-1]
    for j in range(N):
        if x[j]=="1":
            dp[i]=max(dp[i],dp[i-2**j])%A[j]
ans=dp[-1]
print(ans)
0