結果

問題 No.1895 Mod 2
ユーザー publflpublfl
提出日時 2022-04-08 22:15:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 568 bytes
コンパイル時間 467 ms
コンパイル使用メモリ 32,512 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 07:46:29
合計ジャッジ時間 2,081 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 17 ms
5,248 KB
testcase_02 AC 23 ms
5,376 KB
testcase_03 AC 102 ms
5,376 KB
testcase_04 AC 95 ms
5,376 KB
testcase_05 AC 124 ms
5,376 KB
testcase_06 AC 125 ms
5,376 KB
testcase_07 AC 126 ms
5,376 KB
testcase_08 AC 68 ms
5,376 KB
testcase_09 AC 81 ms
5,376 KB
testcase_10 AC 28 ms
5,376 KB
testcase_11 AC 92 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

long long int func(long long int k)
{
	long long int ans = (long long int)1e16;
	long long int min = 0, max = (long long int)1e16;
	while(min<=max)
	{
		long long int h = (min+max)/2;
		if(h>=1e8) max = h-1;
		else if(h*h>k) max = h-1;
		else
		{
			ans = h;
			min = h+1;
		}
	}
	return (ans+1)/2;
}

int main()
{
	int T;
	scanf("%d",&T);
	while(T--)
	{
		long long int a,b;
		scanf("%lld%lld",&a,&b);
		a--;
		int ans = 0;
		while(a<b)
		{
			long long int val = func(b) - func(a);
			ans += val%2;
			a/=2, b/=2;
		}
		printf("%d\n",ans%2);
	}
}
0