結果

問題 No.800 四平方定理
ユーザー titiytitiy
提出日時 2019-03-28 13:14:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 222 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 265,112 KB
最終ジャッジ日時 2024-10-12 19:20:33
合計ジャッジ時間 32,969 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
74,752 KB
testcase_01 AC 153 ms
76,376 KB
testcase_02 AC 146 ms
75,428 KB
testcase_03 AC 147 ms
75,772 KB
testcase_04 AC 146 ms
75,192 KB
testcase_05 AC 151 ms
75,724 KB
testcase_06 AC 160 ms
76,736 KB
testcase_07 AC 157 ms
75,908 KB
testcase_08 AC 169 ms
76,800 KB
testcase_09 AC 154 ms
76,520 KB
testcase_10 AC 1,316 ms
165,592 KB
testcase_11 AC 1,434 ms
175,172 KB
testcase_12 AC 1,487 ms
173,684 KB
testcase_13 AC 1,272 ms
169,164 KB
testcase_14 AC 1,346 ms
175,252 KB
testcase_15 AC 1,488 ms
174,456 KB
testcase_16 AC 1,377 ms
176,008 KB
testcase_17 AC 1,347 ms
176,064 KB
testcase_18 AC 1,616 ms
175,780 KB
testcase_19 AC 1,575 ms
175,980 KB
testcase_20 AC 122 ms
72,960 KB
testcase_21 AC 123 ms
73,088 KB
testcase_22 AC 1,574 ms
176,092 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 122 ms
73,088 KB
testcase_27 AC 123 ms
73,216 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,d=map(int,input().split())
cnt=[0]*8000001
ans=0
xyz=[i*i for i in range(1,n+1)]
for I in [i-j+d for i in xyz for j in xyz if i-j+d>0]:
    cnt[I]+=1
for x in [i+j for i in xyz for j in xyz]:
    ans+=cnt[x]
print(ans)

0