結果

問題 No.2177 Recurring ab
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-25 14:40:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 1,193 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 67,156 KB
最終ジャッジ日時 2024-08-25 14:40:27
合計ジャッジ時間 2,078 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
63,764 KB
testcase_01 AC 52 ms
64,684 KB
testcase_02 AC 54 ms
64,032 KB
testcase_03 AC 48 ms
64,568 KB
testcase_04 AC 50 ms
65,964 KB
testcase_05 AC 47 ms
62,640 KB
testcase_06 AC 47 ms
62,908 KB
testcase_07 AC 50 ms
66,712 KB
testcase_08 AC 53 ms
66,496 KB
testcase_09 AC 55 ms
65,972 KB
testcase_10 AC 49 ms
65,856 KB
testcase_11 AC 50 ms
62,868 KB
testcase_12 AC 54 ms
65,640 KB
testcase_13 AC 54 ms
67,156 KB
testcase_14 AC 51 ms
66,912 KB
testcase_15 AC 49 ms
66,016 KB
testcase_16 AC 45 ms
63,692 KB
testcase_17 AC 50 ms
64,552 KB
testcase_18 AC 51 ms
66,008 KB
testcase_19 AC 49 ms
65,216 KB
testcase_20 AC 52 ms
66,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
g=0
for p in range(2,10):
  for a in range(p):
    for b in range(p):
      if a!=b:
        f=lambda x:x**2-n*a*x-n*b-1
        g+=0>f(p)
L,R=10,10**9
X=10**10
for a in range(10):
  for b in range(10):
    if a!=b:
      f=lambda x:x**2-n*a*x-n*b-1
      d=(n*a)**2-4*(-n*b-1)
      if d>0:
        if (n*a)%2==0:
          ok=(n*a)//2
          ng=-X
          while abs(ok-ng)>1:
            m=(ok+ng)//2
            if 0>f(m):
              ok=m
            else:
              ng=m
          l=ok
          ok=(n*a)//2
          ng=X
          while abs(ok-ng)>1:
            m=(ok+ng)//2
            if 0>f(m):
              ok=m
            else:
              ng=m
          r=ok
        else:
          if f((n*a-1)//2)>0:
            continue
          ok=(n*a-1)//2
          ng=-X
          while abs(ok-ng)>1:
            m=(ok+ng)//2
            if 0>f(m):
              ok=m
            else:
              ng=m
          l=ok
          ok=(n*a+1)//2+1
          ng=X
          while abs(ok-ng)>1:
            m=(ok+ng)//2
            if 0>f(m):
              ok=m
            else:
              ng=m
          r=ok
        g+=max(min(r,R)-max(l,L)+1,0)
print(g)
0