結果

問題 No.1895 Mod 2
ユーザー H20H20
提出日時 2022-04-08 23:05:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 194 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 78,120 KB
最終ジャッジ日時 2024-11-28 14:08:09
合計ジャッジ時間 2,679 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 132 ms
77,312 KB
testcase_02 AC 171 ms
78,120 KB
testcase_03 AC 126 ms
76,800 KB
testcase_04 AC 137 ms
77,312 KB
testcase_05 AC 134 ms
76,800 KB
testcase_06 AC 137 ms
77,312 KB
testcase_07 AC 136 ms
77,296 KB
testcase_08 AC 145 ms
77,056 KB
testcase_09 AC 155 ms
77,312 KB
testcase_10 AC 132 ms
76,928 KB
testcase_11 AC 146 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
T = int(input())

def func(v):
    return math.isqrt(v)+math.isqrt(v//2)

for _ in range(T):
    L,R = map(int, input().split())
    l = func(L-1)
    r = func(R)
    print((r-l)%2)
0