結果

問題 No.2264 Gear Coloring
ユーザー shobonvipshobonvip
提出日時 2023-04-07 22:33:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 2,334 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 65,792 KB
最終ジャッジ日時 2024-04-10 17:30:55
合計ジャッジ時間 2,495 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,736 KB
testcase_01 AC 37 ms
52,736 KB
testcase_02 AC 37 ms
52,736 KB
testcase_03 AC 45 ms
60,020 KB
testcase_04 AC 39 ms
53,504 KB
testcase_05 AC 72 ms
64,000 KB
testcase_06 AC 48 ms
60,800 KB
testcase_07 AC 77 ms
63,872 KB
testcase_08 AC 44 ms
58,496 KB
testcase_09 AC 46 ms
58,496 KB
testcase_10 AC 45 ms
58,880 KB
testcase_11 AC 45 ms
58,240 KB
testcase_12 AC 48 ms
58,624 KB
testcase_13 AC 51 ms
60,160 KB
testcase_14 AC 110 ms
65,792 KB
testcase_15 AC 59 ms
63,232 KB
testcase_16 AC 172 ms
65,536 KB
testcase_17 AC 50 ms
61,184 KB
testcase_18 AC 49 ms
61,184 KB
testcase_19 AC 55 ms
62,848 KB
testcase_20 AC 47 ms
61,304 KB
testcase_21 AC 46 ms
61,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import os
import sys
from io import BytesIO, IOBase

BUFSIZE = 8192


class FastIO(IOBase):
	newlines = 0
	
	def __init__(self, file):
		self._fd = file.fileno()
		self.buffer = BytesIO()
		self.writable = "x" in file.mode or "r" not in file.mode
		self.write = self.buffer.write if self.writable else None
	
	def read(self):
		while True:
			b = os.read(self._fd, max(os.fstat(self._fd).st_size, BUFSIZE))
			if not b:
				break
			ptr = self.buffer.tell()
			self.buffer.seek(0, 2), self.buffer.write(b), self.buffer.seek(ptr)
		self.newlines = 0
		return self.buffer.read()
	
	def readline(self):
		while self.newlines == 0:
			b = os.read(self._fd, max(os.fstat(self._fd).st_size, BUFSIZE))
			self.newlines = b.count(b"\n")+(not b)
			ptr = self.buffer.tell()
			self.buffer.seek(0, 2), self.buffer.write(b), self.buffer.seek(ptr)
		self.newlines -= 1
		return self.buffer.readline()
	
	def flush(self):
		if self.writable:
			os.write(self._fd, self.buffer.getvalue())
			self.buffer.truncate(0), self.buffer.seek(0)


class IOWrapper(IOBase):
	def __init__(self, file):
		self.buffer = FastIO(file)
		self.flush = self.buffer.flush
		self.writable = self.buffer.writable
		self.write = lambda s:self.buffer.write(s.encode("ascii"))
		self.read = lambda:self.buffer.read().decode("ascii")
		self.readline = lambda:self.buffer.readline().decode("ascii")


sys.stdin, sys.stdout = IOWrapper(sys.stdin), IOWrapper(sys.stdout)
input = lambda:sys.stdin.readline().rstrip("\r\n")

# バーンサイドの補題
# t ごとまわす
# let g[i] = gcd(t, A[i])
# prod_i A[i] / g[i]
# t | lcm(A)
# ok!

def makediv(n):
	lower_divisors , upper_divisors = [], []
	i = 1
	while i*i <= n:
		if n % i == 0:
			lower_divisors.append(i)
			if i != n // i:
				upper_divisors.append(n//i)
		i += 1
	return lower_divisors + upper_divisors[::-1]


from math import gcd
mod = 998244353
n, m = map(int,input().split())
a = list(map(int,input().split()))
lcm = 1

for i in range(n):
	lcm = lcm * a[i] // gcd(a[i], lcm)

g = makediv(lcm)
f = len(g)
dp = [0] * f
ans = 0

for i in range(f-1,-1,-1):
	r = 0
	for j in range(n):
		r += gcd(g[i], a[j])
	tmp = pow(m, r, mod)
	dp[i] = lcm // g[i]
	for j in range(i+1, f):
		if g[j] % g[i] == 0:
			dp[i] -= dp[j]
	dp[i] %= mod
	ans += dp[i] * tmp
	ans %= mod

ans *= pow(lcm, mod-2, mod)
ans %= mod
print(ans)
0