結果

問題 No.814 ジジ抜き
ユーザー mtsdmtsd
提出日時 2019-04-12 23:49:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 604 ms / 3,000 ms
コード長 738 bytes
コンパイル時間 1,545 ms
コンパイル使用メモリ 168,044 KB
実行使用メモリ 4,376 KB
最終ジャッジ日時 2023-10-13 09:16:36
合計ジャッジ時間 11,229 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,372 KB
testcase_01 AC 1 ms
4,372 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 7 ms
4,376 KB
testcase_04 AC 602 ms
4,372 KB
testcase_05 AC 604 ms
4,372 KB
testcase_06 AC 475 ms
4,372 KB
testcase_07 AC 231 ms
4,372 KB
testcase_08 AC 457 ms
4,372 KB
testcase_09 AC 336 ms
4,372 KB
testcase_10 AC 454 ms
4,376 KB
testcase_11 AC 461 ms
4,372 KB
testcase_12 AC 224 ms
4,372 KB
testcase_13 AC 229 ms
4,372 KB
testcase_14 AC 353 ms
4,376 KB
testcase_15 AC 175 ms
4,372 KB
testcase_16 AC 170 ms
4,372 KB
testcase_17 AC 366 ms
4,372 KB
testcase_18 AC 315 ms
4,372 KB
testcase_19 AC 447 ms
4,372 KB
testcase_20 AC 238 ms
4,372 KB
testcase_21 AC 262 ms
4,376 KB
testcase_22 AC 389 ms
4,372 KB
testcase_23 AC 194 ms
4,372 KB
testcase_24 AC 349 ms
4,372 KB
testcase_25 AC 270 ms
4,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i=0;i<(int)n;i++)
typedef long long ll;
int calc(ll s,ll m){
	ll p = 1LL<<(m+1);
	ll k = s/p;
	ll cnt = k*(1LL<<m)%2;
	ll zz = s%p;
	zz = max(zz-(1LL<<m)+1,0LL);
	return (cnt+zz)%2;
}

int main(){
	ll n;
	cin >> n;
	vector<ll> cnt(62);
	rep(i,n){
		ll k,l,d;
		scanf("%lld %lld %lld",&k,&l,&d);
		rep(j,61){
			if(j<d){
				if((l>>j)&1){
					cnt[j] += k%2;
				}
			}else{
				ll P = (l+(k-1)*(1<<d))>>d;
				ll PP = (l)>>d;
				if(PP>0)PP--;
				ll Q = j-d;
				int s = calc(P,Q)+calc(PP,Q);
				cnt[j] += s;
			}
			//cerr << j << " " << cnt[j] << endl;
		}
	}
	ll ans = 0;
	rep(i,61){
		if(cnt[i]%2==1){
			ans += 1LL<<i;
		}
	}
	cout << ans << endl;
	return 0;
}
0