結果

問題 No.800 四平方定理
ユーザー ntudantuda
提出日時 2024-02-25 16:48:04
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 311 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 356,408 KB
最終ジャッジ日時 2024-09-29 10:57:55
合計ジャッジ時間 21,429 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
80,396 KB
testcase_01 AC 73 ms
78,620 KB
testcase_02 AC 69 ms
75,564 KB
testcase_03 AC 66 ms
76,112 KB
testcase_04 AC 65 ms
74,732 KB
testcase_05 AC 70 ms
76,340 KB
testcase_06 AC 79 ms
81,580 KB
testcase_07 AC 70 ms
75,904 KB
testcase_08 AC 77 ms
80,896 KB
testcase_09 AC 75 ms
78,720 KB
testcase_10 AC 1,261 ms
228,888 KB
testcase_11 AC 1,447 ms
235,744 KB
testcase_12 AC 1,430 ms
235,920 KB
testcase_13 AC 1,366 ms
224,732 KB
testcase_14 AC 1,419 ms
235,520 KB
testcase_15 AC 1,469 ms
235,448 KB
testcase_16 AC 1,436 ms
235,868 KB
testcase_17 AC 1,716 ms
235,736 KB
testcase_18 AC 1,495 ms
235,820 KB
testcase_19 AC 1,571 ms
235,768 KB
testcase_20 AC 39 ms
53,632 KB
testcase_21 AC 37 ms
53,800 KB
testcase_22 AC 1,558 ms
235,452 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D = map(int,input().split())
from collections import defaultdict
dic1 = defaultdict(int)
dic2 = defaultdict(int)
for i in range(1,N+1):
    for j in range(1,N+1):
        dic1[i*i+j*j] += 1
        dic2[D+j*j-i*i] += 1
ans = 0
for k,v in dic1.items():
    if k in dic2:
        ans += v * dic2[k]
print(ans)

0