結果

問題 No.1083 余りの余り
ユーザー kurimupykurimupy
提出日時 2020-06-19 21:56:09
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 443 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 331,652 KB
最終ジャッジ日時 2024-07-03 14:26:34
合計ジャッジ時間 12,377 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
57,344 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 48 ms
63,872 KB
testcase_03 AC 35 ms
51,968 KB
testcase_04 AC 53 ms
65,664 KB
testcase_05 AC 1,514 ms
132,224 KB
testcase_06 AC 35 ms
52,224 KB
testcase_07 AC 54 ms
66,048 KB
testcase_08 AC 49 ms
63,872 KB
testcase_09 AC 42 ms
60,160 KB
testcase_10 AC 50 ms
63,872 KB
testcase_11 AC 55 ms
66,432 KB
testcase_12 AC 44 ms
60,672 KB
testcase_13 AC 49 ms
61,440 KB
testcase_14 AC 37 ms
51,968 KB
testcase_15 AC 36 ms
51,968 KB
testcase_16 AC 35 ms
52,224 KB
testcase_17 AC 35 ms
52,096 KB
testcase_18 TLE -
testcase_19 AC 1,554 ms
132,136 KB
testcase_20 AC 70 ms
72,448 KB
testcase_21 AC 193 ms
82,524 KB
testcase_22 AC 35 ms
51,968 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):
    for j in range(N):
        if i&(2**j):
            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