結果

問題 No.917 Make One With GCD
ユーザー ああいいああいい
提出日時 2022-02-23 16:13:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 400 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 81,644 KB
実行使用メモリ 64,512 KB
最終ジャッジ日時 2024-07-01 15:49:39
合計ジャッジ時間 2,963 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
63,232 KB
testcase_01 AC 45 ms
53,760 KB
testcase_02 AC 42 ms
53,760 KB
testcase_03 AC 42 ms
54,144 KB
testcase_04 AC 43 ms
53,760 KB
testcase_05 AC 43 ms
53,888 KB
testcase_06 AC 44 ms
53,888 KB
testcase_07 AC 43 ms
53,188 KB
testcase_08 AC 43 ms
53,632 KB
testcase_09 AC 56 ms
64,256 KB
testcase_10 AC 54 ms
64,256 KB
testcase_11 AC 55 ms
63,872 KB
testcase_12 AC 55 ms
64,512 KB
testcase_13 AC 53 ms
62,976 KB
testcase_14 AC 52 ms
64,292 KB
testcase_15 AC 53 ms
63,956 KB
testcase_16 AC 52 ms
63,776 KB
testcase_17 AC 42 ms
53,504 KB
testcase_18 AC 47 ms
59,264 KB
testcase_19 AC 43 ms
53,584 KB
testcase_20 AC 43 ms
53,504 KB
testcase_21 AC 46 ms
59,008 KB
testcase_22 AC 43 ms
53,632 KB
testcase_23 AC 49 ms
59,732 KB
testcase_24 AC 46 ms
58,516 KB
testcase_25 AC 54 ms
62,592 KB
testcase_26 AC 42 ms
53,632 KB
testcase_27 AC 42 ms
53,760 KB
testcase_28 AC 43 ms
53,248 KB
testcase_29 AC 45 ms
54,016 KB
testcase_30 AC 43 ms
53,888 KB
testcase_31 AC 43 ms
53,560 KB
testcase_32 AC 42 ms
53,504 KB
testcase_33 AC 43 ms
53,504 KB
testcase_34 AC 43 ms
54,016 KB
testcase_35 AC 42 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
def gcd(a,b):
    if a == 0:return b
    if b == 0:return a
    while True:
        r = a % b
        a = b
        b = r
        if r == 0:return a
from collections import defaultdict
d = defaultdict(int)
d[0] = 1
for i in range(N):
    e = defaultdict(int)
    for v in d:
        e[v] += d[v]
        e[gcd(v,A[i])] += d[v]
    d = e
print(d[1])
0