結果

問題 No.800 四平方定理
ユーザー URechaRechaURechaRecha
提出日時 2019-09-05 17:09:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,197 ms / 2,000 ms
コード長 298 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 73,420 KB
最終ジャッジ日時 2024-06-11 20:04:42
合計ジャッジ時間 16,694 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
73,240 KB
testcase_01 AC 63 ms
73,336 KB
testcase_02 AC 58 ms
73,180 KB
testcase_03 AC 60 ms
73,184 KB
testcase_04 AC 58 ms
73,188 KB
testcase_05 AC 59 ms
73,328 KB
testcase_06 AC 65 ms
73,176 KB
testcase_07 AC 62 ms
73,164 KB
testcase_08 AC 66 ms
73,164 KB
testcase_09 AC 63 ms
73,284 KB
testcase_10 AC 500 ms
73,364 KB
testcase_11 AC 561 ms
73,260 KB
testcase_12 AC 554 ms
73,212 KB
testcase_13 AC 548 ms
73,192 KB
testcase_14 AC 558 ms
73,216 KB
testcase_15 AC 543 ms
73,200 KB
testcase_16 AC 542 ms
73,316 KB
testcase_17 AC 532 ms
73,204 KB
testcase_18 AC 653 ms
73,420 KB
testcase_19 AC 650 ms
73,224 KB
testcase_20 AC 49 ms
73,236 KB
testcase_21 AC 49 ms
73,176 KB
testcase_22 AC 663 ms
73,216 KB
testcase_23 AC 1,197 ms
73,220 KB
testcase_24 AC 1,078 ms
73,332 KB
testcase_25 AC 1,052 ms
73,300 KB
testcase_26 AC 50 ms
73,156 KB
testcase_27 AC 50 ms
73,192 KB
testcase_28 AC 1,037 ms
73,240 KB
testcase_29 AC 1,078 ms
73,208 KB
testcase_30 AC 1,004 ms
73,388 KB
testcase_31 AC 929 ms
73,328 KB
testcase_32 AC 1,032 ms
73,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N,D = map(int,input().split())
    s = [i**2 for i in range(1,N+1)]
    c = [0]*8000001
    for w in s:
        for z in s:
            a = w-z+D
            if a >=1:
                c[a] +=1
    A = 0
    for x in s:
        for y in s:
            A +=c[x+y]
    print(A)

main()
0