結果

問題 No.917 Make One With GCD
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-30 14:42:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 292 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 62,576 KB
最終ジャッジ日時 2024-10-07 14:32:31
合計ジャッジ時間 3,008 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
60,996 KB
testcase_01 AC 42 ms
53,816 KB
testcase_02 AC 42 ms
55,264 KB
testcase_03 AC 42 ms
54,856 KB
testcase_04 AC 41 ms
54,568 KB
testcase_05 AC 41 ms
54,032 KB
testcase_06 AC 40 ms
53,480 KB
testcase_07 AC 42 ms
55,004 KB
testcase_08 AC 40 ms
54,728 KB
testcase_09 AC 50 ms
62,576 KB
testcase_10 AC 48 ms
61,992 KB
testcase_11 AC 46 ms
61,736 KB
testcase_12 AC 47 ms
61,964 KB
testcase_13 AC 47 ms
61,444 KB
testcase_14 AC 46 ms
61,780 KB
testcase_15 AC 46 ms
61,508 KB
testcase_16 AC 47 ms
62,288 KB
testcase_17 AC 40 ms
53,864 KB
testcase_18 AC 42 ms
55,156 KB
testcase_19 AC 41 ms
54,248 KB
testcase_20 AC 41 ms
54,256 KB
testcase_21 AC 42 ms
54,328 KB
testcase_22 AC 43 ms
55,236 KB
testcase_23 AC 43 ms
55,588 KB
testcase_24 AC 41 ms
54,320 KB
testcase_25 AC 47 ms
61,948 KB
testcase_26 AC 41 ms
53,496 KB
testcase_27 AC 42 ms
55,188 KB
testcase_28 AC 41 ms
53,928 KB
testcase_29 AC 42 ms
54,072 KB
testcase_30 AC 42 ms
55,400 KB
testcase_31 AC 41 ms
53,944 KB
testcase_32 AC 41 ms
53,980 KB
testcase_33 AC 41 ms
53,904 KB
testcase_34 AC 42 ms
54,472 KB
testcase_35 AC 41 ms
54,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from math import gcd
N = int(input())
A = list(map(int, input().split()))

dp = defaultdict(int)
dp[0] = 1
for a in A:
    newDP = defaultdict(int)
    for k, v in dp.items():
        newDP[k] += v
        newDP[gcd(a, k)] += v
    dp = newDP

print(dp[1])
0