結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
73,216 KB
testcase_01 AC 72 ms
73,088 KB
testcase_02 AC 63 ms
73,216 KB
testcase_03 AC 70 ms
73,216 KB
testcase_04 AC 62 ms
73,192 KB
testcase_05 AC 63 ms
73,088 KB
testcase_06 AC 70 ms
73,216 KB
testcase_07 AC 68 ms
73,088 KB
testcase_08 AC 70 ms
73,088 KB
testcase_09 AC 66 ms
73,088 KB
testcase_10 AC 532 ms
73,088 KB
testcase_11 AC 582 ms
73,088 KB
testcase_12 AC 624 ms
73,216 KB
testcase_13 AC 521 ms
73,088 KB
testcase_14 AC 575 ms
73,088 KB
testcase_15 AC 611 ms
73,088 KB
testcase_16 AC 559 ms
73,216 KB
testcase_17 AC 579 ms
73,216 KB
testcase_18 AC 647 ms
73,216 KB
testcase_19 AC 626 ms
73,216 KB
testcase_20 AC 52 ms
73,216 KB
testcase_21 AC 53 ms
73,088 KB
testcase_22 AC 642 ms
73,088 KB
testcase_23 AC 1,132 ms
73,344 KB
testcase_24 AC 1,063 ms
73,256 KB
testcase_25 AC 1,159 ms
73,216 KB
testcase_26 AC 54 ms
73,216 KB
testcase_27 AC 54 ms
73,088 KB
testcase_28 AC 1,065 ms
73,216 KB
testcase_29 AC 1,098 ms
73,216 KB
testcase_30 AC 1,025 ms
73,232 KB
testcase_31 AC 952 ms
73,216 KB
testcase_32 AC 1,101 ms
72,960 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)


if __name__ == '__main__':
    main()
0