結果

問題 No.800 四平方定理
ユーザー tamatotamato
提出日時 2020-07-16 21:58:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 408 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 142,848 KB
最終ジャッジ日時 2024-05-04 02:44:29
合計ジャッジ時間 6,106 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
137,600 KB
testcase_01 AC 94 ms
139,776 KB
testcase_02 AC 95 ms
139,776 KB
testcase_03 AC 94 ms
139,264 KB
testcase_04 AC 97 ms
140,048 KB
testcase_05 AC 95 ms
139,264 KB
testcase_06 AC 94 ms
138,880 KB
testcase_07 AC 101 ms
142,848 KB
testcase_08 AC 94 ms
138,496 KB
testcase_09 AC 94 ms
138,564 KB
testcase_10 AC 145 ms
139,984 KB
testcase_11 AC 159 ms
139,392 KB
testcase_12 AC 156 ms
139,708 KB
testcase_13 AC 151 ms
139,192 KB
testcase_14 AC 147 ms
138,752 KB
testcase_15 AC 151 ms
140,132 KB
testcase_16 AC 150 ms
139,264 KB
testcase_17 AC 150 ms
139,008 KB
testcase_18 AC 157 ms
139,948 KB
testcase_19 AC 170 ms
139,980 KB
testcase_20 AC 87 ms
129,920 KB
testcase_21 AC 85 ms
130,176 KB
testcase_22 AC 168 ms
139,716 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 82 ms
130,304 KB
testcase_27 AC 82 ms
130,304 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


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

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

    cnt = [0] * 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