結果

問題 No.800 四平方定理
ユーザー kamojirokamojiro
提出日時 2019-03-17 23:50:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 297 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 194,944 KB
最終ジャッジ日時 2024-07-08 07:18:16
合計ジャッジ時間 7,920 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
193,024 KB
testcase_01 AC 152 ms
194,048 KB
testcase_02 AC 151 ms
193,664 KB
testcase_03 AC 154 ms
193,792 KB
testcase_04 AC 153 ms
194,048 KB
testcase_05 AC 153 ms
194,176 KB
testcase_06 AC 155 ms
194,048 KB
testcase_07 AC 153 ms
194,432 KB
testcase_08 AC 154 ms
194,176 KB
testcase_09 AC 152 ms
193,664 KB
testcase_10 AC 213 ms
194,688 KB
testcase_11 AC 216 ms
194,816 KB
testcase_12 AC 217 ms
194,688 KB
testcase_13 AC 210 ms
194,560 KB
testcase_14 AC 212 ms
194,944 KB
testcase_15 AC 220 ms
194,560 KB
testcase_16 AC 213 ms
194,432 KB
testcase_17 AC 216 ms
194,816 KB
testcase_18 AC 217 ms
194,432 KB
testcase_19 AC 222 ms
194,560 KB
testcase_20 AC 142 ms
190,080 KB
testcase_21 AC 144 ms
190,336 KB
testcase_22 AC 228 ms
194,560 KB
testcase_23 AC 297 ms
194,816 KB
testcase_24 AC 288 ms
194,816 KB
testcase_25 AC 294 ms
194,560 KB
testcase_26 AC 142 ms
190,336 KB
testcase_27 AC 143 ms
190,464 KB
testcase_28 AC 285 ms
194,560 KB
testcase_29 AC 291 ms
194,816 KB
testcase_30 AC 293 ms
194,944 KB
testcase_31 AC 277 ms
194,560 KB
testcase_32 AC 292 ms
194,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, D = map( int, input().split())
left = [0]*(8*(10**6)+1)
right = [0]*(9*(10**6)+1)
for i in range(1, N+1):
    for j in range(1, N+1):
        left[i**2 + j**2] += 1
for i in range(1, N+1):
    for j in range(1, N+1):
        right[i**2 - j**2 + D+4*10**6] += 1
ans = 0
for i in range(1, 4*10**6+D+1):
    ans += left[i]*right[i+4*10**6]
print(ans)
0