結果

問題 No.800 四平方定理
ユーザー tikitaka1201tikitaka1201
提出日時 2020-09-16 20:31:56
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 332 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 287,296 KB
最終ジャッジ日時 2024-06-22 03:35:26
合計ジャッジ時間 26,000 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
86,824 KB
testcase_01 AC 112 ms
85,696 KB
testcase_02 AC 96 ms
82,220 KB
testcase_03 AC 103 ms
83,112 KB
testcase_04 AC 95 ms
81,660 KB
testcase_05 AC 99 ms
83,084 KB
testcase_06 AC 116 ms
87,380 KB
testcase_07 AC 98 ms
84,348 KB
testcase_08 AC 83 ms
87,516 KB
testcase_09 AC 107 ms
85,872 KB
testcase_10 AC 1,722 ms
248,684 KB
testcase_11 AC 1,812 ms
246,248 KB
testcase_12 AC 1,877 ms
252,832 KB
testcase_13 AC 1,727 ms
249,384 KB
testcase_14 AC 1,840 ms
245,724 KB
testcase_15 AC 1,930 ms
244,800 KB
testcase_16 AC 1,861 ms
244,380 KB
testcase_17 AC 1,879 ms
246,748 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 33 ms
53,324 KB
testcase_21 AC 32 ms
52,472 KB
testcase_22 AC 1,943 ms
244,416 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def MI():
    return map(int, input().split())

n,d=MI()

wz,xy=[],[]
for i in range(1,n+1):
    for j in range(1,n+1):
        wz.append(i**2-j**2+d)
        xy.append(i**2+j**2)
wz=sorted(wz)
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