結果
問題 | No.781 円周上の格子点の数え上げ |
ユーザー | prd_xxx |
提出日時 | 2019-01-11 22:11:54 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 406 bytes |
コンパイル時間 | 245 ms |
コンパイル使用メモリ | 81,976 KB |
実行使用メモリ | 153,600 KB |
最終ジャッジ日時 | 2024-11-30 07:40:34 |
合計ジャッジ時間 | 12,195 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | TLE | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
ソースコード
import bisect X,Y = map(int,input().split()) arr = [] a = 1 while a*a <= Y: arr.append(a*a) a += 1 print(arr) 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)