結果

問題 No.781 円周上の格子点の数え上げ
ユーザー YamadaYamada
提出日時 2019-01-12 23:00:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 335 bytes
コンパイル時間 575 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 93,576 KB
最終ジャッジ日時 2024-06-02 11:28:11
合計ジャッジ時間 15,864 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 496 ms
49,576 KB
testcase_01 AC 498 ms
43,808 KB
testcase_02 AC 482 ms
44,320 KB
testcase_03 AC 490 ms
44,064 KB
testcase_04 AC 490 ms
44,316 KB
testcase_05 AC 488 ms
44,184 KB
testcase_06 AC 506 ms
43,928 KB
testcase_07 AC 515 ms
44,192 KB
testcase_08 AC 1,847 ms
43,808 KB
testcase_09 AC 1,868 ms
44,060 KB
testcase_10 AC 621 ms
44,184 KB
testcase_11 AC 783 ms
44,056 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

def hantei(R):
    return np.sqrt(R)==int(np.sqrt(R))

X,Y =map(int,input().split())
l =[0]*(Y-X+1)
for i in range(int(np.sqrt(Y))+1):
    for j in range(i+1):
        if X <= i**2 +j**2 <= Y:
            l[i**2 +j**2-X] +=8
for i in range(X,Y+1):
    if hantei(i) or hantei(i/2):
        l[i-X] -= 4
print(max(l))
0