結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,672 KB
testcase_01 AC 37 ms
53,524 KB
testcase_02 AC 47 ms
62,744 KB
testcase_03 AC 36 ms
52,872 KB
testcase_04 WA -
testcase_05 AC 335 ms
77,868 KB
testcase_06 AC 36 ms
53,744 KB
testcase_07 AC 45 ms
63,580 KB
testcase_08 AC 49 ms
62,680 KB
testcase_09 AC 40 ms
54,432 KB
testcase_10 AC 45 ms
63,404 KB
testcase_11 WA -
testcase_12 AC 36 ms
53,048 KB
testcase_13 AC 35 ms
53,012 KB
testcase_14 AC 36 ms
52,200 KB
testcase_15 AC 36 ms
52,528 KB
testcase_16 AC 36 ms
54,076 KB
testcase_17 AC 37 ms
53,600 KB
testcase_18 WA -
testcase_19 AC 329 ms
77,924 KB
testcase_20 AC 53 ms
72,596 KB
testcase_21 AC 87 ms
76,312 KB
testcase_22 AC 36 ms
52,268 KB
testcase_23 AC 1,373 ms
84,032 KB
testcase_24 AC 1,375 ms
83,900 KB
testcase_25 AC 1,388 ms
84,332 KB
testcase_26 AC 1,368 ms
84,064 KB
testcase_27 AC 44 ms
62,600 KB
testcase_28 WA -
testcase_29 AC 36 ms
52,724 KB
testcase_30 AC 34 ms
53,148 KB
testcase_31 AC 35 ms
52,700 KB
testcase_32 AC 34 ms
53,124 KB
testcase_33 AC 1,373 ms
84,308 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