結果

問題 No.2151 3 on Torus-Lohkous
ユーザー 👑 p-adicp-adic
提出日時 2023-04-30 22:09:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,053 ms / 2,000 ms
コード長 520 bytes
コンパイル時間 655 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,688 KB
最終ジャッジ日時 2024-04-30 01:11:30
合計ジャッジ時間 6,636 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 235 ms
18,560 KB
testcase_01 AC 239 ms
18,432 KB
testcase_02 AC 239 ms
18,560 KB
testcase_03 AC 1,048 ms
18,560 KB
testcase_04 AC 939 ms
18,560 KB
testcase_05 AC 238 ms
18,560 KB
testcase_06 AC 482 ms
18,688 KB
testcase_07 AC 282 ms
18,432 KB
testcase_08 AC 1,053 ms
18,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
I=input
J=int
R=range
T=J(I())
P=998244353
L=100001
f=[1]*L
g=[1]*L
for i in R(1,L):
	f[i]=(f[i-1]*i)%P
	g[i]=(g[i-1]*pow(i,-1,P))%P
for t in R(T):
	X=I().split()
	H=J(X[0])
	W=J(X[1])
	a=H*W
	G=math.gcd(H,W)
	if G>3:
		a+=G*2
		if G>4 and H*W//G%3==0:
			a+=G*12
		if G%2==0:
			for i in R(2):
				s=0
				r=(G+i*3)%6
				j=6 if r==0 else r
				k=(G//2-j*5)//3
				while k>=0:
					s+=(f[j-1+k]*((g[j]*g[k])%P))%P
					j+=6
					k=(G//2-j*5)//3
				s=(s%P)*G%P
				a+=s*s
			if G%4==0:
				a+=16
	print(a%P)
0