結果

問題 No.800 四平方定理
ユーザー hanamihanami
提出日時 2019-04-09 20:00:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 313 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 81,024 KB
最終ジャッジ日時 2024-07-04 18:53:10
合計ジャッジ時間 40,445 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
11,264 KB
testcase_01 AC 69 ms
11,904 KB
testcase_02 AC 64 ms
11,392 KB
testcase_03 AC 60 ms
11,520 KB
testcase_04 AC 56 ms
11,520 KB
testcase_05 AC 63 ms
11,520 KB
testcase_06 AC 75 ms
12,032 KB
testcase_07 AC 69 ms
12,416 KB
testcase_08 AC 82 ms
14,080 KB
testcase_09 AC 70 ms
11,904 KB
testcase_10 AC 1,318 ms
45,312 KB
testcase_11 AC 1,422 ms
47,232 KB
testcase_12 AC 1,496 ms
49,280 KB
testcase_13 AC 1,293 ms
43,008 KB
testcase_14 AC 1,456 ms
45,568 KB
testcase_15 AC 1,437 ms
49,280 KB
testcase_16 AC 1,401 ms
45,824 KB
testcase_17 AC 1,385 ms
45,824 KB
testcase_18 AC 1,573 ms
53,376 KB
testcase_19 AC 1,509 ms
53,504 KB
testcase_20 AC 31 ms
10,624 KB
testcase_21 AC 31 ms
10,624 KB
testcase_22 AC 1,586 ms
53,760 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 30 ms
10,624 KB
testcase_27 AC 41 ms
18,432 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D=map(int,input().split())
zw_list=[0]*(2*N**2+D+1)
ans=0
p_list=[]
for i in range(1,N+1):
    p_list.append(i**2)
for z in p_list:
    for w in p_list:
        cal=D-z+w
        if cal>0:
            zw_list[cal]+=1            
for x in p_list:
    for y in p_list:
        ans+=zw_list[x+y]
print(ans)       
0