結果

問題 No.1731 Product of Subsequence
ユーザー とりゐとりゐ
提出日時 2021-10-25 21:11:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,215 ms / 2,000 ms
コード長 191 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 88,576 KB
最終ジャッジ日時 2024-11-08 04:24:52
合計ジャッジ時間 13,378 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,022 ms
86,016 KB
testcase_01 AC 47 ms
53,632 KB
testcase_02 AC 46 ms
53,248 KB
testcase_03 AC 47 ms
53,376 KB
testcase_04 AC 46 ms
53,632 KB
testcase_05 AC 55 ms
61,568 KB
testcase_06 AC 55 ms
61,440 KB
testcase_07 AC 48 ms
53,760 KB
testcase_08 AC 80 ms
66,560 KB
testcase_09 AC 64 ms
65,280 KB
testcase_10 AC 1,209 ms
88,192 KB
testcase_11 AC 1,026 ms
85,632 KB
testcase_12 AC 64 ms
65,280 KB
testcase_13 AC 105 ms
76,672 KB
testcase_14 AC 930 ms
84,864 KB
testcase_15 AC 47 ms
53,632 KB
testcase_16 AC 46 ms
53,504 KB
testcase_17 AC 46 ms
53,376 KB
testcase_18 AC 779 ms
80,640 KB
testcase_19 AC 114 ms
76,928 KB
testcase_20 AC 640 ms
79,360 KB
testcase_21 AC 1,215 ms
88,576 KB
testcase_22 AC 70 ms
66,944 KB
testcase_23 AC 67 ms
65,280 KB
testcase_24 AC 89 ms
76,416 KB
testcase_25 AC 71 ms
68,480 KB
testcase_26 AC 276 ms
77,312 KB
testcase_27 AC 345 ms
77,440 KB
testcase_28 AC 612 ms
79,488 KB
testcase_29 AC 289 ms
77,312 KB
testcase_30 AC 1,057 ms
86,144 KB
testcase_31 AC 68 ms
66,688 KB
testcase_32 AC 65 ms
65,280 KB
testcase_33 AC 68 ms
67,072 KB
testcase_34 AC 165 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
from collections import*
n,k,*a=map(int,open(0).read().split())
d=defaultdict(int)
d[1]=1
for i in a:
 D=d.copy()
 for j in D:d[math.gcd(k,i*j)]+=D[j]
print(d[k]%(10**9+7)-(k==1))
0