結果

問題 No.1895 Mod 2
ユーザー gr1msl3ygr1msl3y
提出日時 2022-04-16 18:37:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 279 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,808 KB
最終ジャッジ日時 2024-06-07 15:44:01
合計ジャッジ時間 3,088 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 AC 137 ms
76,928 KB
testcase_02 AC 201 ms
77,808 KB
testcase_03 AC 130 ms
76,672 KB
testcase_04 AC 116 ms
76,416 KB
testcase_05 AC 157 ms
77,440 KB
testcase_06 AC 158 ms
77,104 KB
testcase_07 AC 159 ms
77,056 KB
testcase_08 AC 161 ms
77,312 KB
testcase_09 AC 136 ms
76,776 KB
testcase_10 AC 118 ms
76,928 KB
testcase_11 AC 142 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def count(x):
    if x == 0:
        return 0
    return (int(x**0.5)+1)//2+count(x//2)


def solve(l, r):
    return (count(r)-count(l-1)) % 2


T = int(input())
ans = []
for _ in range(T):
    L, R = map(int, input().split())
    ans.append(solve(L, R))

print(*ans, sep='\n')
0