結果

問題 No.781 円周上の格子点の数え上げ
ユーザー hedwig100hedwig100
提出日時 2020-04-13 14:30:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 664 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 95,952 KB
最終ジャッジ日時 2024-09-24 22:52:34
合計ジャッジ時間 8,209 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
17,820 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 28 ms
10,880 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 33 ms
11,264 KB
testcase_07 AC 36 ms
11,648 KB
testcase_08 AC 614 ms
88,956 KB
testcase_09 AC 613 ms
88,948 KB
testcase_10 AC 37 ms
10,880 KB
testcase_11 AC 49 ms
11,136 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
INF = 10 ** 10
import sys
sys.setrecursionlimit(100000000)
dy = (-1,0,1,0)
dx = (0,1,0,-1)

def main():
    x,y = map(int,input().split())
    square = []
    for i in range(10000):
        if i * i <= y:
            square.append(i * i)
    
    cnt = [0] * (y + 1)
    for q1 in square:
        for q2 in square:
            if x <= q1 + q2 <= y:
                if q1 == 0 or q2 == 0:
                    cnt[q1 + q2] += 2
                else:
                    cnt[q1 + q2] += 4
    
    ans = 0
    for i in range(x,y + 1):
        ans = max(ans,cnt[i])
    
    #print(cnt,square)
    print(ans)

if __name__ =='__main__':
    main()   
0