結果

問題 No.917 Make One With GCD
ユーザー roarisroaris
提出日時 2019-12-08 19:55:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 607 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 76,820 KB
最終ジャッジ日時 2024-06-24 11:12:22
合計ジャッジ時間 3,431 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
76,264 KB
testcase_01 AC 43 ms
54,512 KB
testcase_02 AC 42 ms
54,672 KB
testcase_03 AC 40 ms
54,128 KB
testcase_04 AC 40 ms
55,456 KB
testcase_05 AC 43 ms
53,996 KB
testcase_06 AC 73 ms
76,444 KB
testcase_07 AC 70 ms
76,504 KB
testcase_08 AC 55 ms
67,532 KB
testcase_09 AC 71 ms
76,340 KB
testcase_10 AC 72 ms
76,404 KB
testcase_11 AC 72 ms
76,500 KB
testcase_12 AC 81 ms
76,820 KB
testcase_13 AC 67 ms
76,232 KB
testcase_14 AC 72 ms
76,648 KB
testcase_15 AC 72 ms
76,500 KB
testcase_16 AC 70 ms
76,288 KB
testcase_17 AC 46 ms
62,132 KB
testcase_18 AC 56 ms
69,588 KB
testcase_19 AC 43 ms
61,128 KB
testcase_20 AC 47 ms
61,736 KB
testcase_21 AC 54 ms
68,552 KB
testcase_22 AC 54 ms
65,572 KB
testcase_23 AC 60 ms
73,924 KB
testcase_24 AC 55 ms
66,944 KB
testcase_25 AC 67 ms
76,280 KB
testcase_26 AC 49 ms
62,752 KB
testcase_27 AC 41 ms
55,184 KB
testcase_28 AC 42 ms
53,700 KB
testcase_29 AC 41 ms
55,228 KB
testcase_30 AC 53 ms
63,492 KB
testcase_31 AC 42 ms
54,512 KB
testcase_32 AC 44 ms
60,660 KB
testcase_33 AC 45 ms
60,192 KB
testcase_34 AC 43 ms
54,616 KB
testcase_35 AC 48 ms
61,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

def gcd(a, b):
    while b:
        a, b = b, a%b
    return a

N = int(input())
A = list(map(int, input().split()))
s = set()
s.add(0)

for Ai in A:
    for i in range(1, int(Ai**0.5)+1):
        if Ai%i==0:
            s.add(i)
            s.add(Ai//i)

divs = list(s)
divs.sort()
idx = defaultdict(int)
i = 0

for d in divs:
    idx[d] = i
    i += 1

dp = [[0]*len(divs) for _ in range(N+1)]
dp[0][idx[0]] = 1

for i in range(N):
    for j in range(len(divs)):
        dp[i+1][j] += dp[i][j]
        dp[i+1][idx[gcd(divs[j], A[i])]] += dp[i][j]

print(dp[N][idx[1]])
0