結果

問題 No.1083 余りの余り
ユーザー vwxyzvwxyz
提出日時 2024-06-22 02:16:04
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 274 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 416,340 KB
最終ジャッジ日時 2024-06-22 02:16:20
合計ジャッジ時間 9,773 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
59,688 KB
testcase_01 AC 36 ms
52,436 KB
testcase_02 AC 42 ms
61,172 KB
testcase_03 AC 33 ms
52,756 KB
testcase_04 AC 42 ms
62,744 KB
testcase_05 AC 1,156 ms
179,672 KB
testcase_06 AC 33 ms
52,280 KB
testcase_07 AC 41 ms
62,652 KB
testcase_08 AC 39 ms
61,944 KB
testcase_09 AC 32 ms
52,428 KB
testcase_10 AC 41 ms
62,124 KB
testcase_11 AC 42 ms
64,904 KB
testcase_12 AC 38 ms
58,744 KB
testcase_13 AC 37 ms
59,876 KB
testcase_14 AC 32 ms
53,504 KB
testcase_15 AC 32 ms
52,200 KB
testcase_16 AC 36 ms
52,560 KB
testcase_17 AC 33 ms
53,528 KB
testcase_18 AC 1,628 ms
240,948 KB
testcase_19 AC 484 ms
146,092 KB
testcase_20 AC 47 ms
65,652 KB
testcase_21 AC 71 ms
83,660 KB
testcase_22 AC 32 ms
54,016 KB
testcase_23 TLE -
testcase_24 TLE -
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())
A=list(map(int,input().split()))
dp=[set() for bit in range(1<<N)]
dp[0].add(K)
for bit in range(1<<N):
    for i in range(N):
        if bit&1<<i:
            for a in dp[bit^1<<i]:
                dp[bit].add(a%A[i])
ans=max(dp[-1])
print(ans)
0