結果

問題 No.1895 Mod 2
ユーザー ああいいああいい
提出日時 2022-04-08 22:20:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,495 ms / 2,000 ms
コード長 489 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 79,036 KB
最終ジャッジ日時 2024-11-28 13:01:46
合計ジャッジ時間 11,057 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
60,744 KB
testcase_01 AC 834 ms
76,736 KB
testcase_02 AC 1,031 ms
79,036 KB
testcase_03 AC 838 ms
76,732 KB
testcase_04 AC 1,027 ms
77,464 KB
testcase_05 AC 1,460 ms
76,880 KB
testcase_06 AC 1,448 ms
77,256 KB
testcase_07 AC 1,495 ms
76,872 KB
testcase_08 AC 490 ms
76,628 KB
testcase_09 AC 511 ms
77,236 KB
testcase_10 AC 147 ms
76,480 KB
testcase_11 AC 810 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

def calc(x):
    ans = 0
    i = 1
    while i <= x:
        end = x + 1
        start = 1
        while end - start > 1:
            mid = end + start >> 1
            if mid * mid * i <= x:
                start = mid
            else:
                end = mid
        #print(i,x,(start + 1) % 2)
        ans += (start + 1) // 2 % 2
        i *= 2
    return ans % 2
for _ in range(T):
    l,r = map(int,input().split())
    ans = calc(r) - calc(l-1)
    print(ans%2)
0