結果

問題 No.1895 Mod 2
ユーザー siganaisiganai
提出日時 2022-04-09 16:56:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 759 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 79,044 KB
最終ジャッジ日時 2024-11-29 16:35:39
合計ジャッジ時間 2,427 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
63,616 KB
testcase_01 AC 112 ms
78,228 KB
testcase_02 AC 113 ms
78,392 KB
testcase_03 AC 97 ms
78,464 KB
testcase_04 AC 101 ms
77,788 KB
testcase_05 AC 100 ms
77,920 KB
testcase_06 AC 100 ms
78,080 KB
testcase_07 AC 102 ms
78,464 KB
testcase_08 AC 104 ms
78,124 KB
testcase_09 AC 110 ms
78,508 KB
testcase_10 AC 87 ms
77,608 KB
testcase_11 AC 112 ms
79,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env PyPy3

from collections import Counter, defaultdict, deque
import itertools
import re
import math
from functools import reduce
import operator
import bisect
import heapq
import functools
mod=10**9+7

import sys
input=sys.stdin.readline

t = int(input())

def count(x):
    res = 0
    if x >= 10 ** 7:
        sq = int(math.sqrt(x) - 2)
        while (sq + 1) ** 2 <= x:
            sq += 1
    else:
        sq = int(math.sqrt(x))
    res += sq
    if x >= 10 ** 7:
        dsq = int(math.sqrt(x//2) - 2)
        while (dsq + 1) ** 2 * 2 <= x:
            dsq += 1
    else:
        dsq = int(math.sqrt(x//2))
    res += dsq
    return res

for _ in range(t):
    l,r=map(int,input().split())
    ans = count(r) - count(l-1)
    print(ans%2)

0