結果

問題 No.1731 Product of Subsequence
ユーザー 已经死了已经死了
提出日時 2024-08-31 15:00:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,431 ms / 2,000 ms
コード長 1,088 bytes
コンパイル時間 474 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 102,988 KB
最終ジャッジ日時 2024-08-31 15:00:49
合計ジャッジ時間 18,207 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,154 ms
102,380 KB
testcase_01 AC 144 ms
89,940 KB
testcase_02 AC 144 ms
89,980 KB
testcase_03 AC 141 ms
89,984 KB
testcase_04 AC 171 ms
89,888 KB
testcase_05 AC 150 ms
90,828 KB
testcase_06 AC 151 ms
90,868 KB
testcase_07 AC 144 ms
89,924 KB
testcase_08 AC 186 ms
91,088 KB
testcase_09 AC 155 ms
90,864 KB
testcase_10 AC 1,390 ms
102,988 KB
testcase_11 AC 1,208 ms
96,964 KB
testcase_12 AC 157 ms
90,980 KB
testcase_13 AC 208 ms
91,368 KB
testcase_14 AC 1,093 ms
97,752 KB
testcase_15 AC 142 ms
89,876 KB
testcase_16 AC 143 ms
89,880 KB
testcase_17 AC 144 ms
89,932 KB
testcase_18 AC 998 ms
98,520 KB
testcase_19 AC 196 ms
91,408 KB
testcase_20 AC 836 ms
96,336 KB
testcase_21 AC 1,431 ms
100,660 KB
testcase_22 AC 159 ms
90,964 KB
testcase_23 AC 161 ms
90,880 KB
testcase_24 AC 182 ms
91,152 KB
testcase_25 AC 173 ms
91,244 KB
testcase_26 AC 423 ms
91,768 KB
testcase_27 AC 457 ms
92,012 KB
testcase_28 AC 748 ms
93,232 KB
testcase_29 AC 400 ms
91,852 KB
testcase_30 AC 1,208 ms
98,196 KB
testcase_31 AC 155 ms
91,116 KB
testcase_32 AC 152 ms
91,068 KB
testcase_33 AC 157 ms
91,208 KB
testcase_34 AC 272 ms
91,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import copy
import decimal
import fractions
import heapq
import itertools
import math
import random
import sys
import time
from collections import Counter,deque,defaultdict
from functools import lru_cache,reduce
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
    heap.append(item)
    heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
    if heap and item < heap[0]:
        item, heap[0] = heap[0], item
        heapq._siftup_max(heap, 0)
    return item
from math import gcd as GCD
read=sys.stdin.read
readline=sys.stdin.readline
readlines=sys.stdin.readlines
write=sys.stdout.write
#import pypyjit
#pypyjit.set_param('max_unroll_recursion=-1')
#sys.set_int_max_str_digits(10**9)

N,K=map(int,readline().split())
A=list(map(int,readline().split()))
mod=10**9+7
dp=defaultdict(int)
for a in A:
    prev=dp
    dp=defaultdict(int)
    for aa,c in prev.items():
        dp[aa]+=c
        dp[GCD(aa*a,K)]+=c
    dp[GCD(a,K)]+=1
    for aa in dp:
        dp[aa]%=mod
ans=dp[K]
print(ans)
0