結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 241 ms
18,688 KB
testcase_01 AC 236 ms
18,688 KB
testcase_02 AC 236 ms
18,688 KB
testcase_03 AC 1,042 ms
18,688 KB
testcase_04 AC 942 ms
18,560 KB
testcase_05 AC 236 ms
18,560 KB
testcase_06 AC 470 ms
18,688 KB
testcase_07 AC 277 ms
18,560 KB
testcase_08 AC 1,056 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