結果

問題 No.800 四平方定理
ユーザー komkompikomkompi
提出日時 2020-08-17 23:33:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,616 ms / 2,000 ms
コード長 376 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 81,872 KB
実行使用メモリ 203,596 KB
最終ジャッジ日時 2024-10-11 11:31:28
合計ジャッジ時間 21,783 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
63,744 KB
testcase_01 AC 58 ms
66,176 KB
testcase_02 AC 56 ms
65,280 KB
testcase_03 AC 55 ms
65,664 KB
testcase_04 AC 56 ms
64,640 KB
testcase_05 AC 56 ms
65,408 KB
testcase_06 AC 60 ms
67,072 KB
testcase_07 AC 56 ms
65,792 KB
testcase_08 AC 59 ms
67,072 KB
testcase_09 AC 59 ms
66,816 KB
testcase_10 AC 625 ms
162,432 KB
testcase_11 AC 681 ms
162,816 KB
testcase_12 AC 669 ms
162,784 KB
testcase_13 AC 714 ms
162,656 KB
testcase_14 AC 755 ms
162,304 KB
testcase_15 AC 741 ms
162,816 KB
testcase_16 AC 730 ms
162,560 KB
testcase_17 AC 681 ms
162,688 KB
testcase_18 AC 676 ms
162,688 KB
testcase_19 AC 647 ms
162,432 KB
testcase_20 AC 37 ms
51,584 KB
testcase_21 AC 38 ms
51,968 KB
testcase_22 AC 720 ms
162,304 KB
testcase_23 AC 1,598 ms
203,264 KB
testcase_24 AC 1,463 ms
203,264 KB
testcase_25 AC 1,530 ms
203,392 KB
testcase_26 AC 37 ms
51,840 KB
testcase_27 AC 41 ms
51,840 KB
testcase_28 AC 1,372 ms
203,392 KB
testcase_29 AC 1,484 ms
203,596 KB
testcase_30 AC 1,616 ms
203,520 KB
testcase_31 AC 1,316 ms
203,520 KB
testcase_32 AC 1,581 ms
203,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
N,D=map(int,input().split())

xy={}
for i in range(1,N+1):
    for j in range(1,N+1):
        temp=(i**2+j**2)
        if temp in xy:
            xy[temp]+=1
        else:
            xy[temp]=1

ans=0

for i in range(1,N+1):
    for j in range(1,N+1):
        temp=(i**2-j**2)
        if D-temp in xy:
            ans+=xy[D-temp]

print(ans)
0