結果

問題 No.2651 [Cherry 6th Tune B] $\mathbb{C}$omplex комбинат
ユーザー 👑 p-adicp-adic
提出日時 2023-08-23 11:45:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 701 ms / 2,500 ms
コード長 245 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 78,080 KB
最終ジャッジ日時 2024-09-27 08:13:51
合計ジャッジ時間 22,073 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 37 ms
51,584 KB
testcase_02 AC 701 ms
77,616 KB
testcase_03 AC 635 ms
77,192 KB
testcase_04 AC 625 ms
76,928 KB
testcase_05 AC 620 ms
77,416 KB
testcase_06 AC 614 ms
77,312 KB
testcase_07 AC 617 ms
76,928 KB
testcase_08 AC 620 ms
77,980 KB
testcase_09 AC 611 ms
76,928 KB
testcase_10 AC 612 ms
78,080 KB
testcase_11 AC 612 ms
77,312 KB
testcase_12 AC 619 ms
77,440 KB
testcase_13 AC 619 ms
77,312 KB
testcase_14 AC 632 ms
77,028 KB
testcase_15 AC 621 ms
77,120 KB
testcase_16 AC 628 ms
76,912 KB
testcase_17 AC 632 ms
76,928 KB
testcase_18 AC 626 ms
77,312 KB
testcase_19 AC 621 ms
77,084 KB
testcase_20 AC 688 ms
77,696 KB
testcase_21 AC 227 ms
76,416 KB
testcase_22 AC 334 ms
75,904 KB
testcase_23 AC 407 ms
76,332 KB
testcase_24 AC 477 ms
76,480 KB
testcase_25 AC 102 ms
76,208 KB
testcase_26 AC 312 ms
76,032 KB
testcase_27 AC 562 ms
76,604 KB
testcase_28 AC 439 ms
76,672 KB
testcase_29 AC 228 ms
75,904 KB
testcase_30 AC 108 ms
76,360 KB
testcase_31 AC 480 ms
76,288 KB
testcase_32 AC 136 ms
75,904 KB
testcase_33 AC 447 ms
76,288 KB
testcase_34 AC 307 ms
76,032 KB
testcase_35 AC 541 ms
76,416 KB
testcase_36 AC 637 ms
77,548 KB
testcase_37 AC 590 ms
76,700 KB
testcase_38 AC 554 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R=input,range
P=998244353
for t in R(int(I())):
	N=int(I())
	a=b=d=e=f=g=0
	for i in R(N):
		x,y=map(int,I().split())
		z=x*x+y*y
		w=pow(z,-1,P)
		a,b,d,e,f,g=a+b*z+i*2+(d-e*x*x-f*x*y-g*y*y)*w,b+w,d+z,e+4*x*x*w,f+8*x*y*w,g+4*y*y*w
	print(a%P)
0