結果

問題 No.800 四平方定理
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-11-17 23:27:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,441 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 260,140 KB
最終ジャッジ日時 2024-09-26 05:35:24
合計ジャッジ時間 18,026 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
69,692 KB
testcase_01 AC 70 ms
76,456 KB
testcase_02 AC 59 ms
72,316 KB
testcase_03 AC 61 ms
72,452 KB
testcase_04 AC 61 ms
71,544 KB
testcase_05 AC 62 ms
74,384 KB
testcase_06 AC 67 ms
77,260 KB
testcase_07 AC 66 ms
75,988 KB
testcase_08 AC 72 ms
80,372 KB
testcase_09 AC 65 ms
73,036 KB
testcase_10 AC 568 ms
228,520 KB
testcase_11 AC 601 ms
228,440 KB
testcase_12 AC 650 ms
249,848 KB
testcase_13 AC 464 ms
209,452 KB
testcase_14 AC 502 ms
228,272 KB
testcase_15 AC 614 ms
249,792 KB
testcase_16 AC 503 ms
228,672 KB
testcase_17 AC 503 ms
228,320 KB
testcase_18 AC 771 ms
253,284 KB
testcase_19 AC 782 ms
253,312 KB
testcase_20 AC 42 ms
56,004 KB
testcase_21 AC 41 ms
56,784 KB
testcase_22 AC 737 ms
243,528 KB
testcase_23 AC 1,441 ms
251,004 KB
testcase_24 AC 1,076 ms
254,092 KB
testcase_25 AC 1,429 ms
251,364 KB
testcase_26 AC 44 ms
56,456 KB
testcase_27 AC 44 ms
56,364 KB
testcase_28 AC 990 ms
240,912 KB
testcase_29 AC 1,191 ms
244,100 KB
testcase_30 AC 1,018 ms
254,484 KB
testcase_31 AC 919 ms
260,140 KB
testcase_32 AC 1,120 ms
241,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

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

A = defaultdict(int)
for i in range(1,N+1):
    i2 = i*i
    for j in range(1,min(math.ceil(math.sqrt(D+i2))+1,N)+1):
        j2 = j*j
        A[D + i2 - j2] += 1


ans = 0
for i in range(1,N+1):
    i2 = i*i
    for j in range(1,N+1):
        j2 = j*j
        ans += A[i2+j2]
print(ans)
0