結果

問題 No.781 円周上の格子点の数え上げ
ユーザー prd_xxxprd_xxx
提出日時 2019-01-11 22:24:55
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 403 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 73,600 KB
最終ジャッジ日時 2024-11-30 08:45:41
合計ジャッジ時間 8,498 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,456 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 40 ms
52,372 KB
testcase_04 AC 42 ms
51,968 KB
testcase_05 AC 40 ms
51,840 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 42 ms
51,968 KB
testcase_08 AC 49 ms
60,416 KB
testcase_09 AC 47 ms
60,672 KB
testcase_10 AC 142 ms
68,864 KB
testcase_11 AC 198 ms
70,272 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 WA -
testcase_15 AC 74 ms
63,616 KB
testcase_16 AC 41 ms
52,224 KB
testcase_17 WA -
testcase_18 AC 66 ms
63,872 KB
testcase_19 AC 55 ms
62,592 KB
testcase_20 AC 55 ms
62,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def is_square(n):
    return n**0.5 == int(n**0.5)

def calc(n):
    ret = 0
    for a in arr:
        if n-a <= 0: break
        if is_square(n-a):
            ret += 1
    if is_square(n):
        ret += 1
    return ret * 4

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