結果

問題 No.1036 Make One With GCD 2
ユーザー ああいいああいい
提出日時 2022-03-31 09:37:13
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 410 bytes
コンパイル時間 567 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 382,096 KB
最終ジャッジ日時 2024-11-16 11:54:07
合計ジャッジ時間 27,322 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 462 ms
187,944 KB
testcase_01 AC 470 ms
174,672 KB
testcase_02 AC 478 ms
159,700 KB
testcase_03 AC 137 ms
101,120 KB
testcase_04 AC 189 ms
121,344 KB
testcase_05 AC 45 ms
53,632 KB
testcase_06 AC 46 ms
53,504 KB
testcase_07 AC 207 ms
102,320 KB
testcase_08 AC 179 ms
103,936 KB
testcase_09 AC 660 ms
172,672 KB
testcase_10 AC 599 ms
161,004 KB
testcase_11 AC 660 ms
173,788 KB
testcase_12 AC 611 ms
161,860 KB
testcase_13 AC 824 ms
178,056 KB
testcase_14 AC 841 ms
188,252 KB
testcase_15 AC 778 ms
174,080 KB
testcase_16 AC 791 ms
174,620 KB
testcase_17 AC 801 ms
177,512 KB
testcase_18 AC 75 ms
68,992 KB
testcase_19 AC 77 ms
69,888 KB
testcase_20 AC 79 ms
71,808 KB
testcase_21 AC 80 ms
71,936 KB
testcase_22 AC 777 ms
173,596 KB
testcase_23 AC 579 ms
138,240 KB
testcase_24 AC 807 ms
175,292 KB
testcase_25 AC 739 ms
161,856 KB
testcase_26 AC 764 ms
170,700 KB
testcase_27 AC 46 ms
53,504 KB
testcase_28 AC 47 ms
53,120 KB
testcase_29 AC 46 ms
53,504 KB
testcase_30 AC 46 ms
53,504 KB
testcase_31 AC 48 ms
54,272 KB
testcase_32 AC 49 ms
54,528 KB
testcase_33 AC 48 ms
53,248 KB
testcase_34 AC 49 ms
54,016 KB
testcase_35 AC 46 ms
53,120 KB
testcase_36 AC 46 ms
53,248 KB
testcase_37 AC 47 ms
53,760 KB
testcase_38 TLE -
testcase_39 AC 466 ms
191,000 KB
testcase_40 AC 577 ms
138,112 KB
testcase_41 AC 607 ms
191,000 KB
testcase_42 AC 598 ms
191,264 KB
testcase_43 AC 580 ms
191,392 KB
testcase_44 AC 597 ms
382,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))

def gcd(a,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)
count = 0
d[0] = 1
for a in A:
    e = defaultdict(int)
    for k in d:
        g = gcd(k,a)
        e[g] += d[k]
    count += e[1]
    e[0] += 1
    d = e
print(count)
    
0