結果

問題 No.1895 Mod 2
ユーザー publflpublfl
提出日時 2022-04-08 22:15:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 568 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 32,640 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-28 12:54:26
合計ジャッジ時間 1,892 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 19 ms
6,820 KB
testcase_02 AC 26 ms
6,820 KB
testcase_03 AC 116 ms
6,820 KB
testcase_04 AC 103 ms
6,816 KB
testcase_05 AC 143 ms
6,820 KB
testcase_06 AC 139 ms
6,816 KB
testcase_07 AC 138 ms
6,816 KB
testcase_08 AC 73 ms
6,820 KB
testcase_09 AC 87 ms
6,820 KB
testcase_10 AC 33 ms
6,816 KB
testcase_11 AC 103 ms
6,816 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