結果

問題 No.1593 Perfect Distance
ユーザー reatoretchreatoretch
提出日時 2021-07-09 22:11:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 336 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 75,496 KB
最終ジャッジ日時 2024-07-01 16:40:20
合計ジャッジ時間 2,210 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,196 KB
testcase_01 AC 38 ms
53,204 KB
testcase_02 AC 38 ms
52,488 KB
testcase_03 AC 38 ms
53,032 KB
testcase_04 AC 38 ms
53,400 KB
testcase_05 AC 38 ms
53,288 KB
testcase_06 AC 38 ms
52,500 KB
testcase_07 AC 43 ms
59,600 KB
testcase_08 AC 52 ms
63,448 KB
testcase_09 AC 66 ms
73,216 KB
testcase_10 AC 71 ms
75,396 KB
testcase_11 AC 76 ms
75,476 KB
testcase_12 AC 84 ms
75,496 KB
testcase_13 AC 85 ms
75,388 KB
testcase_14 AC 88 ms
75,308 KB
testcase_15 AC 101 ms
75,308 KB
testcase_16 AC 112 ms
75,456 KB
testcase_17 AC 38 ms
52,944 KB
testcase_18 AC 38 ms
52,760 KB
testcase_19 AC 38 ms
53,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def X(mid):
    global N
    return N*N-mid*mid
def bsL(target,left,right):
  while True:
    mid=(left+right)//2
    mid2=X(mid)
    if mid2==target:
      return 1
    if right-left==1:
      return 0
    if mid2>target:
      left=mid
    else:
      right=mid
N=int(input())
ans=0
for x in range(N):
    ans+=bsL(x*x,0,N)
print(ans)
0