結果

問題 No.1895 Mod 2
ユーザー とりゐとりゐ
提出日時 2021-12-13 18:23:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 726 ms / 2,000 ms
コード長 578 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-05-06 00:44:32
合計ジャッジ時間 6,130 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
59,520 KB
testcase_01 AC 692 ms
77,056 KB
testcase_02 AC 603 ms
77,312 KB
testcase_03 AC 299 ms
76,288 KB
testcase_04 AC 512 ms
76,928 KB
testcase_05 AC 452 ms
76,416 KB
testcase_06 AC 726 ms
77,184 KB
testcase_07 AC 468 ms
76,928 KB
testcase_08 AC 370 ms
77,696 KB
testcase_09 AC 363 ms
76,416 KB
testcase_10 AC 312 ms
76,416 KB
testcase_11 AC 396 ms
77,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# l から r までのうち,f(i) が奇数であるものを数えればいい
# 「f(n) が奇数 」は 「n の 2 以外の素因数の積が平方数であること」と同値

def sqrt(n):
  ng,ok=10**9+1,0
  while abs(ok-ng)>1:
    mid=(ok+ng)//2
    if mid**2<=n:
      ok=mid
    else:
      ng=mid
  return ok

def g(n):
  # g(n) = sum [i=1...n] f(n) mod2
  if n==0:
    return 0
  cnt=0
  for i in range(60):
    p=pow(2,i)
    m=n//p
    cnt+=(sqrt(m)+1)//2
  return cnt%2

t=int(input())
for _ in range(t):
  l,r=map(int,input().split())
  print((g(r)-g(l-1))%2)
0