結果

問題 No.1083 余りの余り
ユーザー kurimupykurimupy
提出日時 2020-06-19 21:52:39
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 475 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 331,968 KB
最終ジャッジ日時 2024-07-03 14:22:32
合計ジャッジ時間 7,492 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
59,928 KB
testcase_01 AC 36 ms
53,420 KB
testcase_02 AC 50 ms
65,192 KB
testcase_03 AC 35 ms
53,144 KB
testcase_04 AC 58 ms
70,784 KB
testcase_05 AC 1,808 ms
132,388 KB
testcase_06 AC 35 ms
53,008 KB
testcase_07 AC 56 ms
68,260 KB
testcase_08 AC 50 ms
64,732 KB
testcase_09 AC 43 ms
62,120 KB
testcase_10 AC 50 ms
65,976 KB
testcase_11 AC 58 ms
69,092 KB
testcase_12 AC 45 ms
62,660 KB
testcase_13 AC 46 ms
62,220 KB
testcase_14 AC 35 ms
54,088 KB
testcase_15 AC 35 ms
52,488 KB
testcase_16 AC 36 ms
52,836 KB
testcase_17 AC 36 ms
52,708 KB
testcase_18 TLE -
testcase_19 AC 1,804 ms
132,536 KB
testcase_20 AC 82 ms
77,148 KB
testcase_21 AC 216 ms
82,800 KB
testcase_22 AC 33 ms
53,040 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

0