結果
問題 | No.1731 Product of Subsequence |
ユーザー | Hydru |
提出日時 | 2021-11-06 13:28:24 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 588 bytes |
コンパイル時間 | 244 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 165,780 KB |
最終ジャッジ日時 | 2024-11-07 09:42:15 |
合計ジャッジ時間 | 11,938 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 45 ms
53,632 KB |
testcase_02 | AC | 44 ms
53,632 KB |
testcase_03 | AC | 43 ms
53,504 KB |
testcase_04 | AC | 43 ms
54,016 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 44 ms
53,632 KB |
testcase_08 | WA | - |
testcase_09 | AC | 43 ms
53,760 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 51 ms
61,440 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 43 ms
53,888 KB |
testcase_16 | AC | 43 ms
53,632 KB |
testcase_17 | AC | 44 ms
53,760 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 699 ms
144,216 KB |
testcase_21 | WA | - |
testcase_22 | AC | 68 ms
70,272 KB |
testcase_23 | AC | 43 ms
53,632 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 70 ms
70,400 KB |
testcase_32 | AC | 44 ms
53,376 KB |
testcase_33 | AC | 68 ms
70,400 KB |
testcase_34 | WA | - |
ソースコード
from sys import exit from math import gcd from collections import defaultdict mod=10**9+7 n,k=map(int,input().split()) if k==1: print(pow(2,n,mod)-1) exit() A=list(map(lambda x:gcd(int(x),k),input().split())) B=[] cnt=0 for x in A: if x==1: cnt+=1 else: B.append(x) m=len(B) dp=[defaultdict(int) for _ in range(m+1)] dp[0][1]=1 for i in range(1,m+1): for j in dp[i-1]: dp[i][j]+=dp[i-1][j] dp[i][j]%=mod ai=A[i-1] g=gcd(j*ai,k) dp[i][g]+=dp[i-1][j] dp[i][g]%=mod ans=dp[m][k]*pow(2,cnt,mod) print(ans)