結果

問題 No.1895 Mod 2
ユーザー rlangevinrlangevin
提出日時 2023-04-25 08:57:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 547 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 76,656 KB
最終ジャッジ日時 2024-11-14 05:41:03
合計ジャッジ時間 2,212 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,476 KB
testcase_01 AC 86 ms
76,504 KB
testcase_02 AC 96 ms
76,656 KB
testcase_03 AC 80 ms
76,520 KB
testcase_04 AC 79 ms
76,212 KB
testcase_05 AC 87 ms
76,188 KB
testcase_06 AC 90 ms
76,128 KB
testcase_07 AC 87 ms
76,392 KB
testcase_08 AC 81 ms
76,540 KB
testcase_09 AC 83 ms
76,540 KB
testcase_10 AC 81 ms
76,624 KB
testcase_11 AC 83 ms
76,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

def f(x):
    yes = 0
    no = 10 ** 9
    while no - yes != 1:
        mid = (yes + no)//2
        if mid * mid <= x:
            yes = mid
        else:
            no = mid
    ans = yes

    yes = 0
    no = 10 ** 9
    while no - yes != 1:
        mid = (yes + no)//2
        if 2 * mid * mid <= x:
            yes = mid
        else:
            no = mid
    return (ans + yes) % 2
    

T = int(readline())
for _ in range(T):
    L, R = map(int, readline().split())
    print((f(R) - f(L - 1)) % 2)
0