結果

問題 No.1036 Make One With GCD 2
ユーザー hedwig100hedwig100
提出日時 2020-04-24 23:01:49
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 620 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 197,244 KB
最終ジャッジ日時 2024-11-07 10:41:51
合計ジャッジ時間 18,795 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 363 ms
194,000 KB
testcase_01 AC 374 ms
155,532 KB
testcase_02 AC 418 ms
158,800 KB
testcase_03 AC 125 ms
102,144 KB
testcase_04 AC 166 ms
113,084 KB
testcase_05 AC 54 ms
59,648 KB
testcase_06 AC 55 ms
59,776 KB
testcase_07 AC 227 ms
111,196 KB
testcase_08 AC 198 ms
100,580 KB
testcase_09 AC 545 ms
150,092 KB
testcase_10 AC 492 ms
154,496 KB
testcase_11 AC 547 ms
151,036 KB
testcase_12 AC 498 ms
153,984 KB
testcase_13 AC 747 ms
179,148 KB
testcase_14 AC 746 ms
187,728 KB
testcase_15 AC 725 ms
174,940 KB
testcase_16 AC 707 ms
175,108 KB
testcase_17 AC 730 ms
177,556 KB
testcase_18 AC 70 ms
68,096 KB
testcase_19 AC 75 ms
69,248 KB
testcase_20 AC 76 ms
71,040 KB
testcase_21 AC 75 ms
70,656 KB
testcase_22 AC 691 ms
174,356 KB
testcase_23 AC 523 ms
134,080 KB
testcase_24 AC 714 ms
177,424 KB
testcase_25 AC 658 ms
162,220 KB
testcase_26 AC 677 ms
172,112 KB
testcase_27 AC 52 ms
60,288 KB
testcase_28 AC 53 ms
60,416 KB
testcase_29 AC 53 ms
60,032 KB
testcase_30 AC 54 ms
60,032 KB
testcase_31 AC 54 ms
61,056 KB
testcase_32 AC 56 ms
61,056 KB
testcase_33 AC 54 ms
60,288 KB
testcase_34 AC 56 ms
60,672 KB
testcase_35 AC 53 ms
60,160 KB
testcase_36 AC 53 ms
59,904 KB
testcase_37 AC 53 ms
60,032 KB
testcase_38 TLE -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 10 ** 9
MOD = 10 **9 + 7
import sys
sys.setrecursionlimit(100000000)
dy = (-1,0,1,0)
dx = (0,1,0,-1)
from math import gcd
from collections import defaultdict
from copy import deepcopy

def main():
    n = int(input())
    a = list(map(int,input().split()))

    if a[0] == 1:
        ans = 1
    else:
        ans = 0

    dp1 = defaultdict(int)
    dp1[a[0]] = 1
    for i in range(1,n):
        dp2 = defaultdict(int)
        for k in dp1:
            g = gcd(k,a[i])
            dp2[g] += dp1[k]
        dp2[a[i]] += 1
        dp1 = dp2
        ans += dp1[1]
    print(ans)
if __name__=='__main__':
    main()

0