結果

問題 No.800 四平方定理
ユーザー syunsukesyunsuke
提出日時 2019-09-23 18:49:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,280 ms / 2,000 ms
コード長 526 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 255,472 KB
最終ジャッジ日時 2024-09-19 04:30:14
合計ジャッジ時間 18,122 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
66,432 KB
testcase_01 AC 59 ms
70,656 KB
testcase_02 AC 58 ms
68,736 KB
testcase_03 AC 56 ms
69,248 KB
testcase_04 AC 57 ms
68,352 KB
testcase_05 AC 60 ms
69,120 KB
testcase_06 AC 64 ms
72,320 KB
testcase_07 AC 58 ms
69,376 KB
testcase_08 AC 63 ms
71,680 KB
testcase_09 AC 67 ms
71,296 KB
testcase_10 AC 596 ms
230,144 KB
testcase_11 AC 591 ms
230,272 KB
testcase_12 AC 603 ms
230,272 KB
testcase_13 AC 580 ms
229,760 KB
testcase_14 AC 611 ms
229,888 KB
testcase_15 AC 576 ms
230,564 KB
testcase_16 AC 586 ms
230,528 KB
testcase_17 AC 628 ms
229,888 KB
testcase_18 AC 558 ms
230,144 KB
testcase_19 AC 604 ms
230,272 KB
testcase_20 AC 36 ms
52,096 KB
testcase_21 AC 36 ms
51,968 KB
testcase_22 AC 689 ms
230,272 KB
testcase_23 AC 1,280 ms
254,840 KB
testcase_24 AC 1,149 ms
255,140 KB
testcase_25 AC 1,225 ms
255,044 KB
testcase_26 AC 38 ms
51,840 KB
testcase_27 AC 36 ms
51,712 KB
testcase_28 AC 1,167 ms
254,780 KB
testcase_29 AC 1,209 ms
255,008 KB
testcase_30 AC 1,192 ms
255,288 KB
testcase_31 AC 977 ms
255,008 KB
testcase_32 AC 1,215 ms
255,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

D=dict()
N,M=map(int,input().split())

for w in range(1,N+1):
    for z in range(w,N+1):
        if z==w:
            if M not in D:
                D[M]=1
            else:
                D[M]+=1
        elif z**2-w**2+M in D:
            D[w**2-z**2+M]+=1
            D[z**2-w**2+M]+=1
        else:
            D[z**2-w**2+M]=1
            D[w**2-z**2+M]=1
#print(D)
ans=0
for x in range(1,N+1):
    for y in range(1,N+1):
        if x**2+y**2 in D:
            ans+=D[x**2+y**2]
#print(x**2,y**2,x**2+y**2,ans)
print(ans)
0