結果

問題 No.917 Make One With GCD
ユーザー maspymaspy
提出日時 2020-02-27 15:29:17
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 458 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-24 11:13:51
合計ジャッジ時間 2,447 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
from collections import defaultdict
from math import gcd

# %%
N, *A = map(int, read().split())
# %%
dp = defaultdict(int)
for x in A:
    newdp = defaultdict(int)
    newdp[x] = 1
    for key, value in dp.items():
        newdp[key] += value
        newdp[gcd(key, x)] += value
    dp = newdp


# %%
print(dp[1])
0