結果

問題 No.2813 Cookie
ユーザー 沙耶花沙耶花
提出日時 2024-07-19 21:42:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 1,155 bytes
コンパイル時間 4,806 ms
コンパイル使用メモリ 274,428 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-19 21:42:24
合計ジャッジ時間 6,809 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 41 ms
5,376 KB
testcase_02 AC 48 ms
5,376 KB
testcase_03 AC 43 ms
5,376 KB
testcase_04 AC 52 ms
5,376 KB
testcase_05 AC 51 ms
5,376 KB
testcase_06 AC 46 ms
5,376 KB
testcase_07 AC 52 ms
5,376 KB
testcase_08 AC 48 ms
5,376 KB
testcase_09 AC 51 ms
5,376 KB
testcase_10 AC 50 ms
5,376 KB
testcase_11 AC 47 ms
5,376 KB
testcase_12 AC 44 ms
5,376 KB
testcase_13 AC 41 ms
5,376 KB
testcase_14 AC 44 ms
5,376 KB
testcase_15 AC 44 ms
5,376 KB
testcase_16 AC 43 ms
5,376 KB
testcase_17 AC 50 ms
5,376 KB
testcase_18 AC 38 ms
5,376 KB
testcase_19 AC 43 ms
5,376 KB
testcase_20 AC 41 ms
5,376 KB
testcase_21 AC 51 ms
5,376 KB
testcase_22 AC 43 ms
5,376 KB
testcase_23 AC 36 ms
5,376 KB
testcase_24 AC 40 ms
5,376 KB
testcase_25 AC 45 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'long long int check(long long int)':
main.cpp:35:15: warning: 'ret' may be used uninitialized [-Wmaybe-uninitialized]
   35 |         mp[n] = ret;
main.cpp:28:19: note: 'ret' was declared here
   28 |         long long ret;
      |                   ^~~

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000001
map<long long,long long> mp;
long long check(long long n){
	if(mp.count(n))return mp[n];
	if(n==0)return 0;
	set<long long> S;
	
	rep(i,1<<(n-1)){
		vector<long long> t(1,1);
		rep(j,n-1){
			if((i>>j)&1)t.push_back(1);
			else t.back()++;
		}
		if(t.size()==1)continue;
		long long xo = 0;
		rep(j,t.size())xo^=check(t[j]);
		S.insert(xo);
	}
	S.insert(0);
	long long ret;
	rep(i,1000){
		if(!S.count(i)){
			ret = i;
			break;
		}
	}
	mp[n] = ret;
	return ret;
	
}

long long get(long long n){
	vector<long long> ret = {0,1,2,2,4,4};
	if(n<ret.size())return ret[n];
	long long t = ((n+2)/3)*4-6;
	if(n%3!=1)t += 2;
	return t;
}

int main(){

	/*rep(i,22){
		cout<<i<<' '<<check(i)<<' '<<get(i)<<endl;
	}
	*/
int _t;
cin>>_t;
rep(_,_t){
	int n;
	cin>>n;
	long long xo = 0;
	rep(i,n){
		long long a;
		cin>>a;
		xo ^= get(a);
		
	}
	if(xo==0)cout<<"Bob"<<endl;
	else cout<<"Alice"<<endl;
}	
	
	return 0;
}
0