結果

問題 No.1895 Mod 2
ユーザー HydruHydru
提出日時 2022-04-08 23:34:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 393 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 78,080 KB
最終ジャッジ日時 2024-05-06 09:16:58
合計ジャッジ時間 6,717 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 450 ms
77,184 KB
testcase_04 WA -
testcase_05 AC 738 ms
76,928 KB
testcase_06 AC 729 ms
76,800 KB
testcase_07 AC 739 ms
76,928 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

def counts_pow(n,M,k):
    if M==0:
        return 0
    l,r=0,M
    while(r-l>1):
        mid=(r+l)//2
        if mid**n*k<=M:
            l=mid
        else:
            r=mid
    return l

for _ in range(T):
    L, R = map(int,input().split())
    count=0
    count+=counts_pow(2,R,1)-counts_pow(2,L-1,1)
    count+=counts_pow(2,R,2)-counts_pow(2,L-1,2)
    print(count%2)
0