結果

問題 No.800 四平方定理
ユーザー ntk-ta01ntk-ta01
提出日時 2020-08-01 15:02:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,764 ms / 2,000 ms
コード長 431 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 370,004 KB
最終ジャッジ日時 2024-07-08 02:32:29
合計ジャッジ時間 24,315 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
75,364 KB
testcase_01 AC 67 ms
85,180 KB
testcase_02 AC 64 ms
78,756 KB
testcase_03 AC 62 ms
81,104 KB
testcase_04 AC 61 ms
77,348 KB
testcase_05 AC 63 ms
80,800 KB
testcase_06 AC 76 ms
87,508 KB
testcase_07 AC 69 ms
84,432 KB
testcase_08 AC 69 ms
86,704 KB
testcase_09 AC 68 ms
83,848 KB
testcase_10 AC 732 ms
258,504 KB
testcase_11 AC 788 ms
256,368 KB
testcase_12 AC 830 ms
260,840 KB
testcase_13 AC 808 ms
259,908 KB
testcase_14 AC 788 ms
257,696 KB
testcase_15 AC 799 ms
258,104 KB
testcase_16 AC 778 ms
257,780 KB
testcase_17 AC 808 ms
256,320 KB
testcase_18 AC 750 ms
257,484 KB
testcase_19 AC 814 ms
258,596 KB
testcase_20 AC 35 ms
55,152 KB
testcase_21 AC 35 ms
53,784 KB
testcase_22 AC 808 ms
257,220 KB
testcase_23 AC 1,740 ms
369,104 KB
testcase_24 AC 1,616 ms
368,580 KB
testcase_25 AC 1,691 ms
368,564 KB
testcase_26 AC 37 ms
53,940 KB
testcase_27 AC 36 ms
55,116 KB
testcase_28 AC 1,700 ms
369,680 KB
testcase_29 AC 1,756 ms
368,704 KB
testcase_30 AC 1,764 ms
369,220 KB
testcase_31 AC 1,449 ms
354,648 KB
testcase_32 AC 1,716 ms
370,004 KB
権限があれば一括ダウンロードができます

ソースコード

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