結果
問題 |
No.2666 Decreasing Modulo Nim
|
ユーザー |
![]() |
提出日時 | 2024-03-08 21:58:27 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 728 bytes |
コンパイル時間 | 1,940 ms |
コンパイル使用メモリ | 194,572 KB |
最終ジャッジ日時 | 2025-02-20 02:26:45 |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 43 WA * 12 |
ソースコード
#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(int p){ int s = 0; for(int i=1; i<=n; ++i){ s ^= (a[i] / p); } return s; } void _main(){ cin >> n >> m; for(int i=1; i<=n; ++i) cin >> a[i]; sort(a + 1, a + 1 + n); for(int i=1; i<=100 && i<=m; ++i){ if(ok(i)){ cout << "Alice\n"; return; } } if(m > 100 && a[n] > 100){ cout << "Alice\n"; } else { cout << "Bob\n"; } } int main(){ ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); _main(); return 0; }