結果

問題 No.800 四平方定理
ユーザー silversmithsilversmith
提出日時 2019-04-07 20:21:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 789 ms / 2,000 ms
コード長 402 bytes
コンパイル時間 640 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 405,088 KB
最終ジャッジ日時 2024-06-27 16:06:22
合計ジャッジ時間 12,952 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
68,880 KB
testcase_01 AC 64 ms
76,276 KB
testcase_02 AC 59 ms
72,404 KB
testcase_03 AC 60 ms
73,340 KB
testcase_04 AC 60 ms
70,904 KB
testcase_05 AC 60 ms
72,136 KB
testcase_06 AC 64 ms
78,948 KB
testcase_07 AC 61 ms
75,060 KB
testcase_08 AC 63 ms
77,816 KB
testcase_09 AC 64 ms
76,712 KB
testcase_10 AC 324 ms
248,740 KB
testcase_11 AC 360 ms
243,416 KB
testcase_12 AC 363 ms
241,264 KB
testcase_13 AC 361 ms
251,124 KB
testcase_14 AC 384 ms
242,280 KB
testcase_15 AC 387 ms
242,000 KB
testcase_16 AC 403 ms
243,792 KB
testcase_17 AC 416 ms
243,772 KB
testcase_18 AC 417 ms
243,840 KB
testcase_19 AC 429 ms
243,436 KB
testcase_20 AC 38 ms
52,820 KB
testcase_21 AC 37 ms
51,692 KB
testcase_22 AC 414 ms
243,556 KB
testcase_23 AC 779 ms
405,088 KB
testcase_24 AC 770 ms
404,960 KB
testcase_25 AC 789 ms
404,588 KB
testcase_26 AC 38 ms
52,356 KB
testcase_27 AC 38 ms
51,936 KB
testcase_28 AC 768 ms
404,196 KB
testcase_29 AC 785 ms
404,444 KB
testcase_30 AC 789 ms
404,652 KB
testcase_31 AC 749 ms
391,272 KB
testcase_32 AC 776 ms
404,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, D =map(int, input().split())
up = 2*N*N +1
num_xy = [0] * up
for x in range(1,N+1):
    for y in range(1,N+1):
        idx = x*x + y*y -1
        num_xy[idx] = num_xy[idx] +1
num_zw = [0] * up 
for z in range(1,N+1):
    for w in range(1,N+1):
        idx = w*w +D - z*z -1
        if idx > 0 and idx < up: 
            num_zw[idx] = num_zw[idx] +1
print(sum([a*b for (a,b) in zip(num_xy,num_zw)]))
0