結果
問題 | No.814 ジジ抜き |
ユーザー | mtsd |
提出日時 | 2019-04-12 22:44:09 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 667 bytes |
コンパイル時間 | 1,369 ms |
コンパイル使用メモリ | 160,364 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-14 20:51:25 |
合計ジャッジ時間 | 14,044 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 818 ms
5,376 KB |
testcase_05 | AC | 820 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
ソースコード
#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; cin >> 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-1)>>d; ll Q = j-d; int s = calc(P,Q)+calc(PP,Q); cnt[j] += s; } } } ll ans = 0; rep(i,61){ if(cnt[i]%2==1){ ans += 1LL<<i; } } cout << ans << endl; return 0; }