結果

問題 No.781 円周上の格子点の数え上げ
ユーザー akitsugu777akitsugu777
提出日時 2019-07-12 11:19:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 385 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 24,520 KB
最終ジャッジ日時 2024-11-17 06:17:10
合計ジャッジ時間 37,369 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
15,872 KB
testcase_01 AC 26 ms
21,504 KB
testcase_02 AC 26 ms
15,744 KB
testcase_03 AC 25 ms
21,120 KB
testcase_04 AC 26 ms
15,872 KB
testcase_05 AC 28 ms
20,992 KB
testcase_06 AC 47 ms
15,744 KB
testcase_07 AC 68 ms
21,504 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 WA -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(x, y):
    c = 0
    for i in range(1, int(y**0.5)+1):
        for j in range(int(y**0.5)+1):
            d = i**2+j**2
            if (d >= x) and (d <= y):
                c += 1
            c = max(0, c)
    return (c * 4)

x, y = map(int, input().split())

if x ==y:
    print(f(x, y))

else:
    for i in range(x, y+1):
        z = 0
        z = max(z, f(i, i))
    print(z)
0