結果

問題 No.1036 Make One With GCD 2
ユーザー anagohirameanagohirame
提出日時 2020-04-24 22:06:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 733 ms / 2,000 ms
コード長 981 bytes
コンパイル時間 867 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 199,480 KB
最終ジャッジ日時 2024-09-16 13:17:15
合計ジャッジ時間 18,734 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 41
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

class Rgcd():
	def __init__(self, lis):
		#the number of nodes is 2n-1
		size = len(lis)
		self.n = 1
		while self.n < size:
			self.n *= 2
		self.node = [0] * (2*self.n-1)
		for i, x in enumerate(lis):
			self.node[i+self.n-1] = x
		for i in range(self.n-2, -1, -1):
			self.node[i] = gcd(self.node[2*i+1], self.node[2*i+2])

	def Access(self, x):
		return self.node[x+self.n-1]

	def Update(self, x, val):
		x += self.n-1
		self.node[x] = val
		while x > 0:
			x = (x-1)//2
			self.node[x] = gcd(self.node[2*x+1], self.node[2*x+2])
		return

	#[l, r)
	def Get(self, l, r):
		L, R = l+self.n, r+self.n
		s = 0
		while L<R:
			if R & 1:
				R -= 1
				s = gcd(s, self.node[R-1])
			if L & 1:
				s = gcd(s, self.node[L-1])
				L += 1
			L >>= 1
			R >>= 1
		return s

n = int(input())
a = list(map(int, input().split()))
seg = Rgcd(a)
rm = 0
ans = 0
for i in range(n):
	rm = max(rm, i)
	while rm < n and seg.Get(i, rm+1) > 1:
		rm += 1
	ans += n-rm
print(ans)
0