結果

問題 No.800 四平方定理
ユーザー _matumo__matumo_
提出日時 2020-08-25 17:45:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 202 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 73,412 KB
最終ジャッジ日時 2024-11-06 11:34:35
合計ジャッジ時間 36,768 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
73,276 KB
testcase_01 AC 128 ms
73,164 KB
testcase_02 AC 119 ms
73,328 KB
testcase_03 AC 122 ms
73,180 KB
testcase_04 AC 118 ms
73,180 KB
testcase_05 AC 122 ms
73,228 KB
testcase_06 AC 136 ms
73,168 KB
testcase_07 AC 131 ms
73,264 KB
testcase_08 AC 141 ms
73,236 KB
testcase_09 AC 130 ms
73,188 KB
testcase_10 AC 1,227 ms
73,200 KB
testcase_11 AC 1,357 ms
73,240 KB
testcase_12 AC 1,360 ms
73,208 KB
testcase_13 AC 1,211 ms
73,208 KB
testcase_14 AC 1,315 ms
73,228 KB
testcase_15 AC 1,374 ms
73,288 KB
testcase_16 AC 1,264 ms
73,204 KB
testcase_17 AC 1,343 ms
73,272 KB
testcase_18 AC 1,431 ms
73,288 KB
testcase_19 AC 1,461 ms
73,280 KB
testcase_20 AC 96 ms
73,284 KB
testcase_21 AC 96 ms
73,196 KB
testcase_22 AC 1,482 ms
73,272 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 95 ms
73,256 KB
testcase_27 AC 96 ms
73,244 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

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 z in v:
    for w in v:
        n=w-z+D
        if n>0: sm+=p[n]
print(sm)
0