結果

問題 No.1895 Mod 2
ユーザー ニックネームニックネーム
提出日時 2022-04-08 23:19:26
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 292 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 1,376,800 KB
最終ジャッジ日時 2024-11-28 14:30:27
合計ジャッジ時間 37,317 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 MLE -
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right
a = []
for i in range(1, 10**8+1):
    j = i*i
    if j > 10**15: break
    while j <= 10**15:
        a.append(j)
        j *= 2
a.sort()
for _ in range(int(input())):
    l, r = map(int, input().split())
    print((bisect_right(a, r)-bisect_right(a, l-1))%2)
0