結果

問題 No.800 四平方定理
ユーザー tikitaka1201tikitaka1201
提出日時 2020-09-16 20:15:19
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 504 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 274,052 KB
最終ジャッジ日時 2024-06-22 03:31:41
合計ジャッジ時間 25,624 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
86,836 KB
testcase_01 AC 132 ms
86,444 KB
testcase_02 AC 106 ms
82,512 KB
testcase_03 AC 108 ms
83,664 KB
testcase_04 AC 108 ms
81,904 KB
testcase_05 AC 115 ms
83,556 KB
testcase_06 AC 134 ms
88,412 KB
testcase_07 AC 126 ms
84,800 KB
testcase_08 AC 109 ms
88,344 KB
testcase_09 AC 127 ms
86,456 KB
testcase_10 AC 1,626 ms
248,780 KB
testcase_11 AC 1,837 ms
243,204 KB
testcase_12 AC 1,772 ms
249,728 KB
testcase_13 AC 1,782 ms
248,972 KB
testcase_14 AC 1,920 ms
244,616 KB
testcase_15 AC 1,857 ms
243,324 KB
testcase_16 AC 1,907 ms
243,924 KB
testcase_17 AC 1,706 ms
244,104 KB
testcase_18 AC 1,789 ms
244,360 KB
testcase_19 AC 1,796 ms
245,388 KB
testcase_20 AC 38 ms
54,020 KB
testcase_21 AC 37 ms
52,696 KB
testcase_22 AC 1,815 ms
244,628 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

n,d=MI()

ws=[i+1 for i in range(n)]
xs=[i+1 for i in range(n)]
ys=[i+1 for i in range(n)]
zs=[i+1 for i in range(n)]

wz,xy=[],[]
for i in ws:
    for j in zs:
        wz.append(i**2-j**2+d)
wz=sorted(wz)
for i in xs:
    for j in ys:
        xy.append(i**2+j**2)
xy=sorted(xy)
from bisect import bisect_right, bisect_left

ans=0
for i in xy:
    l=bisect_left(wz, i)
    r=bisect_right(wz, i)
    ans+=r-l
print(ans)
0