結果

問題 No.800 四平方定理
ユーザー _matumo__matumo_
提出日時 2020-08-25 18:05:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 210 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 73,396 KB
最終ジャッジ日時 2024-11-06 11:36:55
合計ジャッジ時間 32,946 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
73,096 KB
testcase_01 AC 123 ms
73,024 KB
testcase_02 AC 114 ms
73,148 KB
testcase_03 AC 119 ms
73,224 KB
testcase_04 AC 116 ms
73,216 KB
testcase_05 AC 118 ms
73,212 KB
testcase_06 AC 126 ms
73,092 KB
testcase_07 AC 130 ms
73,100 KB
testcase_08 AC 140 ms
73,096 KB
testcase_09 AC 123 ms
73,100 KB
testcase_10 AC 1,143 ms
73,116 KB
testcase_11 AC 1,162 ms
73,076 KB
testcase_12 AC 1,330 ms
73,096 KB
testcase_13 AC 967 ms
73,164 KB
testcase_14 AC 1,051 ms
73,020 KB
testcase_15 AC 1,304 ms
73,256 KB
testcase_16 AC 1,059 ms
73,184 KB
testcase_17 AC 1,075 ms
73,024 KB
testcase_18 AC 1,390 ms
73,020 KB
testcase_19 AC 1,407 ms
73,164 KB
testcase_20 AC 97 ms
73,068 KB
testcase_21 AC 96 ms
72,792 KB
testcase_22 AC 1,427 ms
73,140 KB
testcase_23 TLE -
testcase_24 AC 1,888 ms
73,124 KB
testcase_25 TLE -
testcase_26 AC 95 ms
73,060 KB
testcase_27 AC 96 ms
72,904 KB
testcase_28 AC 1,865 ms
73,120 KB
testcase_29 TLE -
testcase_30 AC 1,955 ms
72,852 KB
testcase_31 AC 1,768 ms
73,176 KB
testcase_32 AC 1,947 ms
73,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D=map(int,input().split())
v=[n*n for n in range(1,N+1)]
p=[0]*8000001
for x in v: 
    for y in v:  p[x+y]+=1
sm=0
for w in v:
    for z in v:
        n=w-z+D
        if n<1: break
        sm+=p[n]
print(sm)
0