結果

問題 No.800 四平方定理
ユーザー kozykozy
提出日時 2020-08-27 17:33:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,736 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 456 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 272,380 KB
最終ジャッジ日時 2024-11-07 21:20:13
合計ジャッジ時間 24,091 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
128,896 KB
testcase_01 AC 117 ms
132,684 KB
testcase_02 AC 95 ms
130,688 KB
testcase_03 AC 96 ms
131,328 KB
testcase_04 AC 93 ms
130,304 KB
testcase_05 AC 104 ms
131,200 KB
testcase_06 AC 101 ms
134,784 KB
testcase_07 AC 98 ms
130,944 KB
testcase_08 AC 99 ms
134,144 KB
testcase_09 AC 97 ms
132,608 KB
testcase_10 AC 679 ms
264,640 KB
testcase_11 AC 743 ms
263,780 KB
testcase_12 AC 766 ms
264,064 KB
testcase_13 AC 673 ms
264,360 KB
testcase_14 AC 759 ms
263,860 KB
testcase_15 AC 772 ms
263,824 KB
testcase_16 AC 756 ms
263,972 KB
testcase_17 AC 759 ms
263,800 KB
testcase_18 AC 795 ms
263,664 KB
testcase_19 AC 806 ms
263,812 KB
testcase_20 AC 76 ms
119,424 KB
testcase_21 AC 75 ms
119,680 KB
testcase_22 AC 778 ms
263,812 KB
testcase_23 AC 1,636 ms
272,236 KB
testcase_24 AC 1,577 ms
271,852 KB
testcase_25 AC 1,685 ms
272,256 KB
testcase_26 AC 76 ms
119,552 KB
testcase_27 AC 76 ms
119,424 KB
testcase_28 AC 1,641 ms
272,300 KB
testcase_29 AC 1,736 ms
272,380 KB
testcase_30 AC 1,639 ms
271,876 KB
testcase_31 AC 1,474 ms
258,540 KB
testcase_32 AC 1,615 ms
272,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D=map(int,input().split())
c=[0 for i in range(2*(4000000)+1)]
for i in range(1,1+N):
    for j in range(1,1+N):
        a=i**2+j**2
        c[a]+=1
m=dict()
for i in range(1,1+N):
    for j in range(1,1+N):
        a=i**2-j**2
        if a in m:
            m[a]+=1
        else:
            m[a]=1
ans=0
for i in m:
    k=D-i
    if k>=0:
      ans+=m[i]*c[k]
print(ans)
0