結果

問題 No.2666 Decreasing Modulo Nim
ユーザー hongrock
提出日時 2024-03-08 22:05:29
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 730 bytes
コンパイル時間 1,922 ms
コンパイル使用メモリ 195,628 KB
最終ジャッジ日時 2025-02-20 02:27:37
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 44 WA * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#define pb emplace_back
#define mp make_pair
 
using ll = long long;
using pii = pair<int,int>;
 
constexpr int mod = 998244353;
constexpr int inf = 0x3f3f3f3f;
constexpr int N = 2e5 + 10;

int n, m, a[N];

bool ok(){
  if(m <= 2){
    int s1 = 0, s2 = 0;
    for(int i=1; i<=n; ++i){
      s1 ^= a[i];
      s2 ^= (a[i] / m);
    }
    return s1 > 0 || s2 > 0;
  }
  sort(a + 1, a + 1 + n);
  if(a[1] == a[n]){
    return n & 1;
  }
  return 1;
}

void _main(){
  cin >> n >> m;
  for(int i=1; i<=n; ++i) cin >> a[i];
  if(ok()){
    cout << "Alice\n";
  } else {
    cout << "Bob\n";
  }
}

int main(){
  ios::sync_with_stdio(0);
  cin.tie(0); cout.tie(0);
  _main();
  return 0;
}
0