結果

問題 No.1895 Mod 2
ユーザー googol_S0googol_S0
提出日時 2022-04-08 22:08:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-05-06 07:40:17
合計ジャッジ時間 2,155 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 132 ms
76,672 KB
testcase_02 AC 122 ms
77,184 KB
testcase_03 AC 120 ms
77,056 KB
testcase_04 AC 118 ms
77,056 KB
testcase_05 AC 124 ms
76,928 KB
testcase_06 AC 128 ms
76,544 KB
testcase_07 AC 129 ms
76,672 KB
testcase_08 AC 127 ms
76,672 KB
testcase_09 AC 127 ms
76,544 KB
testcase_10 AC 118 ms
76,800 KB
testcase_11 AC 124 ms
76,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(x):
  v=0
  for i in range(29,-1,-1):
    w=v+(1<<i)
    if w*w<=x:
      v=w
  return v
for t in range(int(input())):
  L,R=map(int,input().split())
  L-=1
  v=(f(R)+f(R//2)+f(L)+f(L//2))&1
  print(v)
0