結果

問題 No.800 四平方定理
ユーザー ntk-ta01ntk-ta01
提出日時 2020-08-01 14:57:16
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 431 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 369,412 KB
最終ジャッジ日時 2024-07-08 02:37:50
合計ジャッジ時間 30,672 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
73,512 KB
testcase_01 AC 77 ms
83,408 KB
testcase_02 AC 72 ms
79,092 KB
testcase_03 AC 69 ms
79,944 KB
testcase_04 AC 70 ms
78,468 KB
testcase_05 AC 72 ms
79,972 KB
testcase_06 AC 80 ms
89,080 KB
testcase_07 AC 77 ms
86,084 KB
testcase_08 AC 77 ms
87,100 KB
testcase_09 AC 75 ms
84,664 KB
testcase_10 AC 956 ms
258,792 KB
testcase_11 AC 904 ms
257,268 KB
testcase_12 AC 1,052 ms
260,792 KB
testcase_13 AC 1,038 ms
259,580 KB
testcase_14 AC 1,013 ms
256,416 KB
testcase_15 AC 1,001 ms
257,916 KB
testcase_16 AC 1,042 ms
256,816 KB
testcase_17 AC 1,045 ms
256,380 KB
testcase_18 AC 987 ms
257,476 KB
testcase_19 AC 1,050 ms
257,248 KB
testcase_20 AC 42 ms
54,332 KB
testcase_21 AC 41 ms
54,080 KB
testcase_22 AC 1,021 ms
256,508 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 43 ms
55,140 KB
testcase_27 AC 41 ms
53,812 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 1,827 ms
354,708 KB
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N, D = (int(i) for i in input().split())

    A = []
    for x in range(1, N+1):
        for y in range(1, N+1):
            A.append(x**2 + y**2)
    B = []
    for z in range(1, N+1):
        for w in range(1, N+1):
            B.append(z**2 - w**2)

    from collections import Counter
    ans = 0
    cB = Counter(B)
    for a in A:
        ans += cB[D-a]
    print(ans)


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