結果

問題 No.1895 Mod 2
ユーザー AEnAEn
提出日時 2022-12-27 18:55:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,785 ms / 2,000 ms
コード長 383 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 316,088 KB
最終ジャッジ日時 2024-11-22 05:01:53
合計ジャッジ時間 19,563 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,089 ms
299,700 KB
testcase_01 AC 1,418 ms
315,944 KB
testcase_02 AC 1,427 ms
315,944 KB
testcase_03 AC 1,470 ms
315,828 KB
testcase_04 AC 1,335 ms
316,068 KB
testcase_05 AC 1,612 ms
315,824 KB
testcase_06 AC 1,785 ms
316,088 KB
testcase_07 AC 1,605 ms
315,736 KB
testcase_08 AC 1,397 ms
316,080 KB
testcase_09 AC 1,411 ms
316,064 KB
testcase_10 AC 1,290 ms
315,740 KB
testcase_11 AC 1,429 ms
315,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right as br

a = []
for i in range(1,10**15,2):
    if i*i>10**15:break
    a.append(i*i)

p = [1<<i for i in range(51)]
T = int(input())
# T = 10000
for i in range(T):
    L, R = map(int, input().split())
    # L, R = 1, 10**15
    res = 0
    for j in range(51):
        n = br(a,R//p[j])-br(a,(L-1)//p[j])
        res += n
        res %= 2
    print(res)
0