結果

問題 No.1036 Make One With GCD 2
ユーザー hedwig100hedwig100
提出日時 2020-04-24 23:00:00
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 646 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 197,480 KB
最終ジャッジ日時 2024-11-07 03:03:19
合計ジャッジ時間 33,822 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,036 ms
194,372 KB
testcase_01 AC 1,174 ms
157,696 KB
testcase_02 AC 1,275 ms
159,036 KB
testcase_03 AC 368 ms
100,572 KB
testcase_04 AC 562 ms
115,116 KB
testcase_05 AC 49 ms
60,032 KB
testcase_06 AC 49 ms
60,032 KB
testcase_07 AC 558 ms
112,560 KB
testcase_08 AC 472 ms
102,164 KB
testcase_09 AC 1,255 ms
151,372 KB
testcase_10 AC 1,192 ms
153,856 KB
testcase_11 AC 1,288 ms
152,180 KB
testcase_12 AC 1,198 ms
154,052 KB
testcase_13 AC 1,572 ms
179,508 KB
testcase_14 AC 1,617 ms
189,120 KB
testcase_15 AC 1,528 ms
175,192 KB
testcase_16 AC 1,526 ms
175,476 KB
testcase_17 AC 1,564 ms
178,044 KB
testcase_18 AC 124 ms
78,336 KB
testcase_19 AC 140 ms
78,720 KB
testcase_20 AC 141 ms
78,976 KB
testcase_21 AC 144 ms
79,104 KB
testcase_22 AC 1,514 ms
174,468 KB
testcase_23 AC 1,130 ms
135,112 KB
testcase_24 AC 1,561 ms
178,316 KB
testcase_25 AC 1,435 ms
162,836 KB
testcase_26 AC 1,488 ms
172,752 KB
testcase_27 AC 53 ms
60,160 KB
testcase_28 AC 55 ms
60,160 KB
testcase_29 AC 55 ms
60,032 KB
testcase_30 AC 55 ms
60,160 KB
testcase_31 AC 65 ms
63,616 KB
testcase_32 AC 81 ms
70,528 KB
testcase_33 AC 55 ms
60,672 KB
testcase_34 AC 65 ms
64,256 KB
testcase_35 AC 55 ms
59,904 KB
testcase_36 AC 55 ms
60,160 KB
testcase_37 AC 55 ms
60,288 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)
    dp2 = defaultdict(int)
    dp1[a[0]] = 1
    for i in range(1,n):
        dp2.clear()
        for k in dp1:
            g = gcd(k,a[i])
            dp2[g] += dp1[k]
        dp2[a[i]] += 1
        dp1 = deepcopy(dp2)
        ans += dp1[1]
    print(ans)
if __name__=='__main__':
    main()

0