結果

問題 No.781 円周上の格子点の数え上げ
ユーザー prd_xxxprd_xxx
提出日時 2019-01-11 22:12:44
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 396 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 152,784 KB
最終ジャッジ日時 2024-11-30 07:42:52
合計ジャッジ時間 12,182 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,076 KB
testcase_01 AC 39 ms
129,748 KB
testcase_02 AC 39 ms
60,100 KB
testcase_03 AC 39 ms
53,200 KB
testcase_04 AC 38 ms
52,960 KB
testcase_05 AC 39 ms
52,840 KB
testcase_06 AC 44 ms
59,504 KB
testcase_07 AC 47 ms
60,304 KB
testcase_08 AC 60 ms
70,016 KB
testcase_09 AC 60 ms
70,544 KB
testcase_10 AC 205 ms
76,368 KB
testcase_11 AC 304 ms
76,536 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 WA -
testcase_15 AC 119 ms
76,376 KB
testcase_16 AC 47 ms
61,844 KB
testcase_17 TLE -
testcase_18 AC 110 ms
76,444 KB
testcase_19 AC 81 ms
76,336 KB
testcase_20 AC 76 ms
152,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

X,Y = map(int,input().split())
arr = []
a = 1
while a*a <= Y:
    arr.append(a*a)
    a += 1

def calc(n):
    ret = 0
    for a in arr:
        i = bisect.bisect_left(arr, n-a)
        j = bisect.bisect(arr, n-a)
        ret += j-i
    if n**0.5 == int(n**0.5):
        ret += 1
    return ret * 4

ans = 0
for n in range(max(X,Y-3000),Y+1):
    ans = max(ans, calc(n))
print(ans)
0