結果

問題 No.1895 Mod 2
ユーザー hir355hir355
提出日時 2022-04-09 01:13:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 77,408 KB
最終ジャッジ日時 2024-11-28 16:53:22
合計ジャッジ時間 2,337 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,132 KB
testcase_01 AC 127 ms
76,884 KB
testcase_02 AC 121 ms
77,172 KB
testcase_03 AC 120 ms
76,904 KB
testcase_04 AC 120 ms
77,384 KB
testcase_05 AC 126 ms
77,408 KB
testcase_06 AC 125 ms
77,020 KB
testcase_07 AC 127 ms
76,760 KB
testcase_08 AC 127 ms
76,680 KB
testcase_09 AC 126 ms
76,768 KB
testcase_10 AC 116 ms
77,108 KB
testcase_11 AC 122 ms
77,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(n):
    l, r = 0, 10 ** 9
    while r - l > 1:
        m = (l + r) // 2
        if m * m <= n:
            l = m
        else:
            r = m
    return l % 2

t = int(input())
for _ in range(t):
    l, r = map(int, input().split())
    l -= 1
    print((f(r) - f(r // 2) - f(l) + f(l // 2)) % 2)
0