結果

問題 No.800 四平方定理
ユーザー tamatotamato
提出日時 2020-04-28 01:47:28
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 453 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 82,944 KB
実行使用メモリ 316,512 KB
最終ジャッジ日時 2024-11-22 19:50:08
合計ジャッジ時間 35,782 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
68,608 KB
testcase_01 AC 76 ms
74,880 KB
testcase_02 AC 67 ms
71,040 KB
testcase_03 AC 74 ms
73,856 KB
testcase_04 AC 68 ms
71,040 KB
testcase_05 AC 69 ms
72,960 KB
testcase_06 AC 79 ms
77,696 KB
testcase_07 AC 74 ms
77,952 KB
testcase_08 AC 79 ms
77,696 KB
testcase_09 AC 75 ms
74,880 KB
testcase_10 AC 1,109 ms
265,988 KB
testcase_11 AC 1,172 ms
228,072 KB
testcase_12 AC 1,122 ms
227,532 KB
testcase_13 AC 1,135 ms
260,444 KB
testcase_14 AC 1,187 ms
228,080 KB
testcase_15 AC 1,188 ms
227,464 KB
testcase_16 AC 1,212 ms
227,876 KB
testcase_17 AC 1,206 ms
227,876 KB
testcase_18 AC 1,199 ms
228,008 KB
testcase_19 AC 1,176 ms
228,128 KB
testcase_20 AC 41 ms
53,760 KB
testcase_21 AC 43 ms
53,760 KB
testcase_22 AC 1,275 ms
227,752 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 42 ms
53,504 KB
testcase_27 AC 42 ms
53,760 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    from collections import defaultdict
    input = sys.stdin.readline

    N, D = map(int, input().split())

    cnt = defaultdict(int)
    for w in range(1, N+1):
        for z in range(1, N+1):
            cnt[w*w - z*z] += 1
    ans = 0
    for x in range(1, N+1):
        for y in range(1, N+1):
            ans += cnt[x*x + y*y - D]
    print(ans)


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