結果

問題 No.800 四平方定理
ユーザー tikitaka1201tikitaka1201
提出日時 2020-09-16 20:20:02
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 360 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 459,320 KB
最終ジャッジ日時 2024-06-22 03:33:17
合計ジャッジ時間 34,640 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
73,756 KB
testcase_01 AC 76 ms
85,148 KB
testcase_02 AC 69 ms
79,720 KB
testcase_03 AC 69 ms
81,432 KB
testcase_04 AC 72 ms
77,876 KB
testcase_05 AC 72 ms
81,360 KB
testcase_06 AC 81 ms
89,296 KB
testcase_07 AC 74 ms
82,180 KB
testcase_08 AC 77 ms
87,248 KB
testcase_09 AC 77 ms
85,128 KB
testcase_10 AC 1,153 ms
255,996 KB
testcase_11 AC 1,168 ms
276,048 KB
testcase_12 AC 1,207 ms
266,628 KB
testcase_13 AC 1,172 ms
255,824 KB
testcase_14 AC 1,237 ms
276,936 KB
testcase_15 AC 1,212 ms
277,080 KB
testcase_16 AC 1,208 ms
276,760 KB
testcase_17 AC 1,217 ms
277,080 KB
testcase_18 AC 1,190 ms
276,812 KB
testcase_19 AC 1,234 ms
276,748 KB
testcase_20 AC 40 ms
54,476 KB
testcase_21 AC 40 ms
54,348 KB
testcase_22 AC 1,263 ms
277,080 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 41 ms
54,348 KB
testcase_27 AC 41 ms
54,512 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
def MI():
    return map(int, input().split())

n,d=MI()
from collections import Counter

wz,xy=[],[]
for i in range(1,n+1):
    for j in range(1,n+1):
        wz.append(i**2-j**2+d)
wz=Counter(wz)
for i in range(1,n+1):
    for j in range(1,n+1):
        xy.append(i**2+j**2)

ans=0
for i in xy:
    ans+=wz[i]
print(ans)
0