結果

問題 No.800 四平方定理
ユーザー aqua_tenhouaqua_tenhou
提出日時 2021-06-24 21:56:38
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 352 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 257,736 KB
最終ジャッジ日時 2024-06-25 07:33:40
合計ジャッジ時間 27,552 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
65,664 KB
testcase_01 AC 69 ms
69,504 KB
testcase_02 AC 66 ms
67,712 KB
testcase_03 AC 65 ms
67,712 KB
testcase_04 AC 64 ms
66,816 KB
testcase_05 AC 66 ms
67,840 KB
testcase_06 AC 71 ms
71,168 KB
testcase_07 AC 67 ms
68,352 KB
testcase_08 AC 69 ms
70,528 KB
testcase_09 AC 71 ms
69,760 KB
testcase_10 AC 840 ms
215,808 KB
testcase_11 AC 882 ms
216,064 KB
testcase_12 AC 923 ms
215,808 KB
testcase_13 AC 859 ms
215,936 KB
testcase_14 AC 907 ms
215,944 KB
testcase_15 AC 909 ms
215,692 KB
testcase_16 AC 929 ms
215,744 KB
testcase_17 AC 956 ms
215,736 KB
testcase_18 AC 906 ms
216,020 KB
testcase_19 AC 916 ms
215,936 KB
testcase_20 AC 37 ms
51,584 KB
testcase_21 AC 37 ms
51,712 KB
testcase_22 AC 959 ms
215,880 KB
testcase_23 TLE -
testcase_24 AC 1,943 ms
257,300 KB
testcase_25 TLE -
testcase_26 AC 38 ms
51,840 KB
testcase_27 AC 37 ms
51,968 KB
testcase_28 AC 1,926 ms
257,180 KB
testcase_29 AC 1,969 ms
256,944 KB
testcase_30 AC 1,932 ms
257,428 KB
testcase_31 AC 1,598 ms
248,448 KB
testcase_32 AC 1,985 ms
257,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,d = map(int,input().split())

dic = {}
for i in range(1, n+1):
    for j in range(1, n+1):
        if i**2 - j**2 in dic:
            dic[i**2 - j**2] += 1
        else:
            dic[i**2 - j**2] = 1

ans = 0
for i in range(1, n+1):
    for j in range(1, n+1):
        if d - i**2 - j**2 in dic:
            ans += dic[d - i**2 - j**2]
print(ans)
0