結果

問題 No.800 四平方定理
ユーザー ayaoniayaoni
提出日時 2020-11-27 01:56:54
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 561 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 269,140 KB
最終ジャッジ日時 2024-07-23 21:15:49
合計ジャッジ時間 34,054 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
69,516 KB
testcase_01 AC 69 ms
74,148 KB
testcase_02 AC 66 ms
71,652 KB
testcase_03 AC 64 ms
71,052 KB
testcase_04 AC 67 ms
71,000 KB
testcase_05 AC 67 ms
72,032 KB
testcase_06 AC 73 ms
74,088 KB
testcase_07 AC 71 ms
73,928 KB
testcase_08 AC 78 ms
77,824 KB
testcase_09 AC 70 ms
73,332 KB
testcase_10 AC 1,168 ms
200,620 KB
testcase_11 AC 1,275 ms
212,184 KB
testcase_12 AC 1,182 ms
212,244 KB
testcase_13 AC 1,049 ms
204,504 KB
testcase_14 AC 1,084 ms
204,380 KB
testcase_15 AC 1,244 ms
212,604 KB
testcase_16 AC 1,084 ms
204,424 KB
testcase_17 AC 1,082 ms
211,344 KB
testcase_18 AC 1,279 ms
212,412 KB
testcase_19 AC 1,426 ms
218,856 KB
testcase_20 AC 39 ms
53,212 KB
testcase_21 AC 38 ms
54,232 KB
testcase_22 AC 1,354 ms
218,856 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 38 ms
53,196 KB
testcase_27 AC 38 ms
53,436 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 1,932 ms
243,480 KB
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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


N,D = MI()

count0 = {}
count1 = {}
for i in range(1,N+1):
    for j in range(1,N+1):
        a = i**2+j**2
        b = -i**2+j**2+D
        if a in count0.keys():
            count0[a] += 1
        else:
            count0[a] = 1
        if b <= 1:
            continue
        if b in count1.keys():
            count1[b] += 1
        else:
            count1[b] = 1

ans = 0
for key in count0.keys():
    if key in count1.keys():
        ans += count0[key]*count1[key]

print(ans)
0