結果

問題 No.800 四平方定理
ユーザー mlihua09mlihua09
提出日時 2020-08-29 19:40:08
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 343 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 654,844 KB
最終ジャッジ日時 2024-11-14 17:39:16
合計ジャッジ時間 47,017 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
83,640 KB
testcase_01 AC 88 ms
428,132 KB
testcase_02 AC 79 ms
86,148 KB
testcase_03 AC 82 ms
423,544 KB
testcase_04 AC 75 ms
85,220 KB
testcase_05 AC 80 ms
372,884 KB
testcase_06 AC 99 ms
97,832 KB
testcase_07 AC 85 ms
374,132 KB
testcase_08 AC 94 ms
97,672 KB
testcase_09 AC 89 ms
428,688 KB
testcase_10 AC 1,633 ms
329,292 KB
testcase_11 MLE -
testcase_12 AC 1,840 ms
331,048 KB
testcase_13 MLE -
testcase_14 AC 1,875 ms
332,320 KB
testcase_15 AC 1,881 ms
324,696 KB
testcase_16 AC 1,855 ms
325,436 KB
testcase_17 AC 1,864 ms
325,212 KB
testcase_18 AC 1,880 ms
324,880 KB
testcase_19 AC 1,913 ms
325,144 KB
testcase_20 AC 41 ms
53,564 KB
testcase_21 AC 41 ms
54,932 KB
testcase_22 AC 1,935 ms
324,884 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 40 ms
53,940 KB
testcase_27 AC 41 ms
54,928 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #


N, D = map(int, input().split())

from collections import defaultdict

X = defaultdict(int)
Y = defaultdict(int)
ans = 0

for i in range(1, N + 1):
    
    for j in range(1, N + 1):
        
        X[i ** 2 + j ** 2] += 1
        
        Y[i ** 2 - j ** 2 + D] += 1
        
for k, v in Y.items():
    
    ans += v * X[k]
    
print(ans)
0