結果

問題 No.800 四平方定理
ユーザー kozykozy
提出日時 2020-08-27 17:31:19
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 371 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 272,764 KB
最終ジャッジ日時 2024-11-07 21:18:17
合計ジャッジ時間 23,816 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
67,072 KB
testcase_01 AC 62 ms
71,552 KB
testcase_02 AC 59 ms
69,064 KB
testcase_03 AC 61 ms
69,504 KB
testcase_04 AC 57 ms
68,352 KB
testcase_05 AC 60 ms
69,760 KB
testcase_06 AC 66 ms
73,216 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 63 ms
71,680 KB
testcase_10 AC 656 ms
232,724 KB
testcase_11 AC 683 ms
250,076 KB
testcase_12 AC 677 ms
249,520 KB
testcase_13 AC 635 ms
247,936 KB
testcase_14 AC 700 ms
250,112 KB
testcase_15 AC 694 ms
250,028 KB
testcase_16 AC 691 ms
251,008 KB
testcase_17 AC 680 ms
250,624 KB
testcase_18 AC 724 ms
250,712 KB
testcase_19 AC 734 ms
250,776 KB
testcase_20 AC 37 ms
51,968 KB
testcase_21 RE -
testcase_22 AC 734 ms
250,592 KB
testcase_23 AC 1,513 ms
272,372 KB
testcase_24 AC 1,499 ms
272,764 KB
testcase_25 AC 1,492 ms
272,384 KB
testcase_26 AC 37 ms
51,712 KB
testcase_27 RE -
testcase_28 AC 1,454 ms
271,908 KB
testcase_29 AC 1,527 ms
272,632 KB
testcase_30 AC 1,458 ms
272,264 KB
testcase_31 AC 1,363 ms
255,572 KB
testcase_32 AC 1,468 ms
272,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D=map(int,input().split())
c=[0 for i in range(2*(N**2)+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