結果

問題 No.800 四平方定理
ユーザー tamatotamato
提出日時 2020-07-16 22:01:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 236 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 917 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 221,512 KB
最終ジャッジ日時 2024-05-04 02:48:13
合計ジャッジ時間 6,291 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
215,568 KB
testcase_01 AC 99 ms
218,060 KB
testcase_02 AC 101 ms
217,592 KB
testcase_03 AC 98 ms
217,636 KB
testcase_04 AC 100 ms
217,552 KB
testcase_05 AC 104 ms
217,728 KB
testcase_06 AC 100 ms
217,280 KB
testcase_07 AC 101 ms
221,512 KB
testcase_08 AC 96 ms
217,556 KB
testcase_09 AC 98 ms
216,804 KB
testcase_10 AC 172 ms
218,124 KB
testcase_11 AC 168 ms
217,824 KB
testcase_12 AC 176 ms
218,172 KB
testcase_13 AC 145 ms
216,952 KB
testcase_14 AC 160 ms
217,228 KB
testcase_15 AC 159 ms
218,192 KB
testcase_16 AC 152 ms
217,088 KB
testcase_17 AC 150 ms
217,220 KB
testcase_18 AC 160 ms
217,996 KB
testcase_19 AC 156 ms
217,708 KB
testcase_20 AC 86 ms
209,188 KB
testcase_21 AC 83 ms
208,236 KB
testcase_22 AC 153 ms
217,720 KB
testcase_23 AC 232 ms
218,252 KB
testcase_24 AC 220 ms
216,932 KB
testcase_25 AC 236 ms
218,384 KB
testcase_26 AC 81 ms
210,296 KB
testcase_27 AC 85 ms
210,104 KB
testcase_28 AC 214 ms
218,272 KB
testcase_29 AC 216 ms
217,832 KB
testcase_30 AC 215 ms
217,668 KB
testcase_31 AC 200 ms
217,056 KB
testcase_32 AC 226 ms
218,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


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

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

    cnt = [0] * (2*10**7)
    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