結果

問題 No.800 四平方定理
ユーザー titiatitia
提出日時 2019-03-17 22:05:28
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 338 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 441,592 KB
最終ジャッジ日時 2024-07-07 23:11:05
合計ジャッジ時間 20,831 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
72,064 KB
testcase_01 AC 71 ms
77,952 KB
testcase_02 AC 66 ms
74,880 KB
testcase_03 AC 67 ms
75,520 KB
testcase_04 AC 65 ms
74,240 KB
testcase_05 AC 66 ms
75,852 KB
testcase_06 AC 74 ms
81,664 KB
testcase_07 AC 72 ms
77,312 KB
testcase_08 AC 74 ms
81,280 KB
testcase_09 AC 73 ms
78,720 KB
testcase_10 AC 1,014 ms
265,900 KB
testcase_11 AC 1,182 ms
263,732 KB
testcase_12 AC 1,268 ms
263,476 KB
testcase_13 AC 1,088 ms
269,348 KB
testcase_14 AC 1,205 ms
263,864 KB
testcase_15 AC 1,216 ms
263,484 KB
testcase_16 AC 1,207 ms
264,652 KB
testcase_17 AC 1,210 ms
264,780 KB
testcase_18 AC 1,210 ms
264,492 KB
testcase_19 AC 1,217 ms
264,548 KB
testcase_20 AC 38 ms
53,760 KB
testcase_21 AC 36 ms
53,504 KB
testcase_22 AC 1,219 ms
264,780 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 37 ms
53,744 KB
testcase_27 AC 39 ms
53,376 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D=map(int,input().split())

P=[0]*(N*N)
M=[0]*(N*N)

for i in range(1,N+1):
    for j in range(i,N+1):
        P[(i-1)*N+j-1]=P[i-1+N*(j-1)]=i*i+j*j
        M[(i-1)*N+j-1]=i*i-j*j
        M[i-1+N*(j-1)]=-M[(i-1)*N+j-1]


from collections import Counter
PC=Counter(P)
MC=Counter(M)

ANS=0

for p in PC:
    ANS+=PC[p]*MC[p-D]

print(ANS)
0