結果

問題 No.1083 余りの余り
ユーザー kurimupykurimupy
提出日時 2020-06-19 22:01:29
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 378 bytes
コンパイル時間 1,755 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 331,856 KB
最終ジャッジ日時 2024-07-03 14:35:27
合計ジャッジ時間 12,351 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
59,632 KB
testcase_01 AC 40 ms
53,924 KB
testcase_02 AC 47 ms
63,528 KB
testcase_03 AC 35 ms
53,184 KB
testcase_04 AC 54 ms
65,956 KB
testcase_05 AC 1,514 ms
132,144 KB
testcase_06 AC 34 ms
52,196 KB
testcase_07 AC 50 ms
65,164 KB
testcase_08 AC 45 ms
64,652 KB
testcase_09 AC 43 ms
60,436 KB
testcase_10 AC 45 ms
63,740 KB
testcase_11 AC 50 ms
65,660 KB
testcase_12 AC 42 ms
61,804 KB
testcase_13 AC 45 ms
62,200 KB
testcase_14 AC 35 ms
52,568 KB
testcase_15 AC 33 ms
52,528 KB
testcase_16 AC 33 ms
52,320 KB
testcase_17 AC 35 ms
53,136 KB
testcase_18 TLE -
testcase_19 AC 1,522 ms
132,052 KB
testcase_20 AC 67 ms
70,464 KB
testcase_21 AC 190 ms
82,460 KB
testcase_22 AC 37 ms
52,248 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()))
dp=[[0 for j in range(N)] for i in range(2**N)]
dp[0]=[K for i in range(N)]
for i in range(1,2**N):
    cnt=0
    P=i
    Q=i
    while Q:
        if Q&1:
            for k in range(N):
                dp[P][cnt]=max(dp[P][cnt],dp[P^2**cnt][k]%A[cnt])
        cnt+=1
        Q>>=1
ans=max(dp[-1])
print(ans)


0