結果

問題 No.2651 [Cherry 6th Tune B] $\mathbb{C}$omplex комбинат
ユーザー titiatitia
提出日時 2024-02-29 02:25:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,855 ms / 2,500 ms
コード長 529 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 113,268 KB
最終ジャッジ日時 2024-11-07 00:36:57
合計ジャッジ時間 58,701 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 1,645 ms
77,108 KB
testcase_03 AC 1,831 ms
97,048 KB
testcase_04 AC 1,841 ms
97,208 KB
testcase_05 AC 1,839 ms
111,232 KB
testcase_06 AC 1,848 ms
110,904 KB
testcase_07 AC 1,837 ms
110,132 KB
testcase_08 AC 1,855 ms
110,356 KB
testcase_09 AC 1,845 ms
109,996 KB
testcase_10 AC 1,836 ms
113,268 KB
testcase_11 AC 1,828 ms
109,672 KB
testcase_12 AC 1,821 ms
107,392 KB
testcase_13 AC 1,826 ms
110,536 KB
testcase_14 AC 1,832 ms
109,204 KB
testcase_15 AC 1,830 ms
110,808 KB
testcase_16 AC 1,830 ms
109,448 KB
testcase_17 AC 1,814 ms
109,120 KB
testcase_18 AC 1,825 ms
109,752 KB
testcase_19 AC 1,815 ms
109,440 KB
testcase_20 AC 1,698 ms
77,608 KB
testcase_21 AC 613 ms
87,272 KB
testcase_22 AC 983 ms
94,336 KB
testcase_23 AC 1,239 ms
99,072 KB
testcase_24 AC 1,486 ms
103,552 KB
testcase_25 AC 186 ms
80,000 KB
testcase_26 AC 898 ms
92,416 KB
testcase_27 AC 1,737 ms
109,056 KB
testcase_28 AC 1,313 ms
101,408 KB
testcase_29 AC 625 ms
87,168 KB
testcase_30 AC 230 ms
79,632 KB
testcase_31 AC 1,479 ms
103,540 KB
testcase_32 AC 320 ms
80,896 KB
testcase_33 AC 1,359 ms
101,376 KB
testcase_34 AC 860 ms
92,160 KB
testcase_35 AC 1,615 ms
105,984 KB
testcase_36 AC 1,212 ms
77,568 KB
testcase_37 AC 1,759 ms
109,184 KB
testcase_38 AC 1,730 ms
109,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod=998244353

T=int(input())
for tests in range(T):
    N=int(input())
    A=[list(map(int,input().split())) for i in range(N)]

    X=0
    Y=0

    Z0=0
    Z1=0

    W0=0
    W1=0
    
    for x,y in A:
        X+=x*x+y*y
        Y+=pow(x*x+y*y,mod-2,mod)

        Z0=Z0+(x*x-y*y)*pow(x*x+y*y,mod-2,mod)
        Z1=Z1+(2*x*y)*pow(x*x+y*y,mod-2,mod)
        
        W0=W0+(x*x-y*y)*pow(x*x+y*y,mod-2,mod)
        W1=W1+(-2*x*y)*pow(x*x+y*y,mod-2,mod)

    print((X*Y-(Z0*W0-Z1*W1))%mod)
0