結果

問題 No.1665 quotient replace
ユーザー inksamuraiinksamurai
提出日時 2021-09-03 21:37:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 919 bytes
コンパイル時間 1,877 ms
コンパイル使用メモリ 166,688 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-05-09 02:24:29
合計ジャッジ時間 7,661 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
7,296 KB
testcase_01 AC 32 ms
7,168 KB
testcase_02 AC 32 ms
7,168 KB
testcase_03 AC 32 ms
7,168 KB
testcase_04 AC 32 ms
7,168 KB
testcase_05 AC 31 ms
7,040 KB
testcase_06 AC 32 ms
7,168 KB
testcase_07 AC 32 ms
7,040 KB
testcase_08 AC 32 ms
7,168 KB
testcase_09 AC 35 ms
7,168 KB
testcase_10 AC 84 ms
7,168 KB
testcase_11 AC 146 ms
7,040 KB
testcase_12 AC 43 ms
7,168 KB
testcase_13 AC 187 ms
7,168 KB
testcase_14 AC 190 ms
7,040 KB
testcase_15 AC 183 ms
7,168 KB
testcase_16 AC 186 ms
7,168 KB
testcase_17 AC 188 ms
7,168 KB
testcase_18 AC 30 ms
7,040 KB
testcase_19 AC 31 ms
7,168 KB
testcase_20 AC 31 ms
7,040 KB
testcase_21 AC 31 ms
7,040 KB
testcase_22 AC 31 ms
7,168 KB
testcase_23 AC 31 ms
7,040 KB
testcase_24 AC 31 ms
7,040 KB
testcase_25 AC 31 ms
7,168 KB
testcase_26 AC 31 ms
7,040 KB
testcase_27 AC 31 ms
7,168 KB
testcase_28 AC 34 ms
7,168 KB
testcase_29 AC 38 ms
7,040 KB
testcase_30 AC 102 ms
7,040 KB
testcase_31 AC 143 ms
7,168 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 31 ms
7,168 KB
testcase_43 AC 31 ms
7,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//eolibraries
#define lnf 3999999999999999999
#define inf 999999999
#define fi first
#define se second
#define pb push_back
#define ll long long
#define ld long double
#define all(c) (c).begin(),(c).end()
#define sz(c) (int)(c).size()
#define make_unique(a) sort(all(a)),a.erase(unique(all(a)),a.end());
#define rep(i,n) for(int i=0;i<n;i++)
#define drep(i,n) for(int i=n-1;i>=0;i--)
#define crep(i,x,n) for(int i=x;i<n;i++)
#define vec(...) vector<__VA_ARGS__>
#define _3sSOzgI ios_base::sync_with_stdio(false),cin.tie(0),cout.tie(0)
//eodefine
using namespace std;
using pii=pair<int,int>;
using vi=vec(int);
const int mxn=1000002;

int main(){
_3sSOzgI;
	vi cnt(mxn+10,0);
	for(int i=2;i<=mxn;i++){
		for(int j=i;j<=mxn;j+=i) cnt[j]++;
	}
	int n;
	cin>>n;
	int xr=0;
	rep(i,n){
		int x;
		cin>>x;
		xr^=cnt[x];
	}
	if(xr==0){
		cout<<"black\n";
	}else{
		cout<<"white\n";
	}
//	
	return 0;
}
0