結果

問題 No.800 四平方定理
ユーザー kamojirokamojiro
提出日時 2019-03-17 23:49:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 349 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 195,072 KB
最終ジャッジ日時 2024-07-08 07:16:31
合計ジャッジ時間 7,932 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
192,640 KB
testcase_01 AC 153 ms
193,664 KB
testcase_02 AC 153 ms
193,792 KB
testcase_03 AC 154 ms
193,536 KB
testcase_04 AC 152 ms
193,536 KB
testcase_05 AC 156 ms
193,920 KB
testcase_06 AC 153 ms
193,920 KB
testcase_07 AC 152 ms
194,176 KB
testcase_08 AC 152 ms
194,176 KB
testcase_09 AC 153 ms
193,664 KB
testcase_10 AC 212 ms
194,688 KB
testcase_11 AC 223 ms
194,560 KB
testcase_12 AC 215 ms
194,944 KB
testcase_13 AC 210 ms
194,688 KB
testcase_14 AC 216 ms
194,432 KB
testcase_15 AC 222 ms
194,688 KB
testcase_16 AC 213 ms
194,816 KB
testcase_17 AC 224 ms
194,560 KB
testcase_18 AC 221 ms
194,432 KB
testcase_19 AC 221 ms
194,688 KB
testcase_20 AC 145 ms
190,464 KB
testcase_21 AC 144 ms
190,464 KB
testcase_22 AC 215 ms
194,560 KB
testcase_23 WA -
testcase_24 AC 292 ms
194,560 KB
testcase_25 WA -
testcase_26 AC 146 ms
190,208 KB
testcase_27 AC 144 ms
190,080 KB
testcase_28 AC 293 ms
195,072 KB
testcase_29 WA -
testcase_30 AC 294 ms
194,432 KB
testcase_31 AC 277 ms
194,688 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

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+1):
    ans += left[i]*right[i+4*10**6]
print(ans)
0