結果

問題 No.814 ジジ抜き
ユーザー ahe100ahe100
提出日時 2019-04-13 03:07:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 300 ms / 3,000 ms
コード長 804 bytes
コンパイル時間 1,509 ms
コンパイル使用メモリ 166,948 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-09-15 06:36:17
合計ジャッジ時間 8,120 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 5 ms
5,376 KB
testcase_04 AC 296 ms
10,460 KB
testcase_05 AC 298 ms
10,496 KB
testcase_06 AC 300 ms
10,452 KB
testcase_07 AC 153 ms
6,912 KB
testcase_08 AC 289 ms
10,240 KB
testcase_09 AC 215 ms
8,448 KB
testcase_10 AC 295 ms
9,984 KB
testcase_11 AC 294 ms
10,368 KB
testcase_12 AC 151 ms
6,784 KB
testcase_13 AC 152 ms
6,912 KB
testcase_14 AC 225 ms
8,704 KB
testcase_15 AC 116 ms
6,144 KB
testcase_16 AC 117 ms
6,144 KB
testcase_17 AC 236 ms
8,832 KB
testcase_18 AC 202 ms
8,192 KB
testcase_19 AC 286 ms
10,112 KB
testcase_20 AC 153 ms
6,912 KB
testcase_21 AC 171 ms
7,424 KB
testcase_22 AC 246 ms
8,960 KB
testcase_23 AC 126 ms
6,272 KB
testcase_24 AC 214 ms
8,448 KB
testcase_25 AC 177 ms
7,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i = 0;i<((int)(n));i++)
#define reg(i,a,b) for(int i = ((int)(a));i<=((int)(b));i++)
#define irep(i,n) for(int i = ((int)(n)-1);i>=0;i--)
#define ireg(i,a,b) for(int i = ((int)(b));i>=((int)(a));i--)
typedef long long ll;

/*
AC
全てのカードのxorはx
*/

ll n,k[300010],l[300010],d[300010],ans=0;

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

void init(){
	cin>>n;
	rep(i,n)cin>>k[i]>>l[i]>>d[i];
}

int main(void){
	init();
	rep(i,n){
		ll ue = l[i]>>d[i];
		ans = ans ^ ((f(ue + k[i]-1) ^ f(ue-1))<<d[i]) ^ (k[i]%2?(ue<<d[i])^l[i]:0);
	}
	cout<<ans<<endl;
	// ll a=((ll)1<<5)-1;
	// ll b=a>>2;
	// ll c=b<<2;
	// cout<<a<<endl;
	// cout<<b<<endl;
	// cout<<c<<endl;
	return 0;
}
0