結果

問題 No.814 ジジ抜き
ユーザー pekempeypekempey
提出日時 2019-04-14 17:30:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 282 ms / 3,000 ms
コード長 552 bytes
コンパイル時間 778 ms
コンパイル使用メモリ 75,180 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-19 05:58:12
合計ジャッジ時間 7,324 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,948 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 4 ms
6,944 KB
testcase_04 AC 281 ms
6,940 KB
testcase_05 AC 280 ms
6,944 KB
testcase_06 AC 276 ms
6,944 KB
testcase_07 AC 141 ms
6,940 KB
testcase_08 AC 282 ms
6,940 KB
testcase_09 AC 202 ms
6,944 KB
testcase_10 AC 271 ms
6,940 KB
testcase_11 AC 270 ms
6,940 KB
testcase_12 AC 154 ms
6,940 KB
testcase_13 AC 141 ms
6,940 KB
testcase_14 AC 214 ms
6,940 KB
testcase_15 AC 107 ms
6,944 KB
testcase_16 AC 108 ms
6,940 KB
testcase_17 AC 228 ms
6,940 KB
testcase_18 AC 194 ms
6,944 KB
testcase_19 AC 277 ms
6,944 KB
testcase_20 AC 140 ms
6,940 KB
testcase_21 AC 158 ms
6,940 KB
testcase_22 AC 244 ms
6,944 KB
testcase_23 AC 118 ms
6,944 KB
testcase_24 AC 201 ms
6,944 KB
testcase_25 AC 163 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <map>
#include <cstring>

using namespace std;

long long f(long long n) {
  n++;
  long long res = 0;
  for (long long k = n / 4 * 4; k < n; k++) {
    res ^= k;
  }
  return res;
}

int main() {
  int N;
  cin >> N;
  long long ans = 0;
  for (int i = 0; i < N; i++) {
    long long K, L, D;
    cin >> K >> L >> D;
    if (K % 2 == 1) {
      ans ^= L & (1LL << D) - 1;
    }
    L >>= D;
    ans ^= (f(L + (K - 1)) ^ f(L - 1)) << D;
  }
  cout << ans << endl;
}
0