結果

問題 No.814 ジジ抜き
ユーザー aa
提出日時 2019-04-14 01:18:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 305 ms / 3,000 ms
コード長 541 bytes
コンパイル時間 1,596 ms
コンパイル使用メモリ 167,848 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-15 11:29:01
合計ジャッジ時間 8,359 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 302 ms
5,376 KB
testcase_05 AC 305 ms
5,376 KB
testcase_06 AC 305 ms
5,376 KB
testcase_07 AC 156 ms
5,376 KB
testcase_08 AC 297 ms
5,376 KB
testcase_09 AC 225 ms
5,376 KB
testcase_10 AC 295 ms
5,376 KB
testcase_11 AC 300 ms
5,376 KB
testcase_12 AC 153 ms
5,376 KB
testcase_13 AC 154 ms
5,376 KB
testcase_14 AC 231 ms
5,376 KB
testcase_15 AC 120 ms
5,376 KB
testcase_16 AC 119 ms
5,376 KB
testcase_17 AC 244 ms
5,376 KB
testcase_18 AC 210 ms
5,376 KB
testcase_19 AC 292 ms
5,376 KB
testcase_20 AC 155 ms
5,376 KB
testcase_21 AC 176 ms
5,376 KB
testcase_22 AC 249 ms
5,376 KB
testcase_23 AC 127 ms
5,376 KB
testcase_24 AC 219 ms
5,376 KB
testcase_25 AC 180 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"

using namespace std;

long f(long x)
{
	if (x % 4 == 0)
	{
		return x;
	}
	else if (x % 4 == 1)
	{
		return 1L;
	}
	else if (x % 4 == 2)
	{
		return x + 1;
	}
	else
	{
		return 0L;
	}
}

void solve()
{
	int n;
	cin >> n;
	long ans = 0;
	while(n--)
	{
		long k, l, d;
		cin >> k >> l >> d;
		long sl = l >> d, res = f(max(sl-1, 0L)) ^ f(sl + k - 1);
		ans ^= res << d;
		if (k & 1)
		{
			ans ^= l ^ (sl << d);
		}
	}
	cout << ans << endl;
}

int main()
{
	solve();
	//cout << "yui(*-v・)yui" << endl;
	return 0;
}
0