結果

問題 No.1665 quotient replace
ユーザー auauaauaua
提出日時 2021-09-03 22:15:00
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 2,480 ms / 3,000 ms
コード長 1,336 bytes
コンパイル時間 1,867 ms
コンパイル使用メモリ 174,056 KB
実行使用メモリ 194,944 KB
最終ジャッジ日時 2023-08-21 22:22:56
合計ジャッジ時間 104,093 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,116 ms
186,932 KB
testcase_01 AC 2,138 ms
186,644 KB
testcase_02 AC 2,106 ms
186,788 KB
testcase_03 AC 2,102 ms
186,792 KB
testcase_04 AC 2,105 ms
186,840 KB
testcase_05 AC 2,144 ms
186,636 KB
testcase_06 AC 2,129 ms
186,884 KB
testcase_07 AC 2,133 ms
186,644 KB
testcase_08 AC 2,107 ms
186,848 KB
testcase_09 AC 2,147 ms
186,792 KB
testcase_10 AC 2,243 ms
189,540 KB
testcase_11 AC 2,349 ms
192,576 KB
testcase_12 AC 2,171 ms
187,544 KB
testcase_13 AC 2,401 ms
194,920 KB
testcase_14 AC 2,436 ms
194,616 KB
testcase_15 AC 2,416 ms
194,712 KB
testcase_16 AC 2,401 ms
194,580 KB
testcase_17 AC 2,420 ms
194,944 KB
testcase_18 AC 2,120 ms
186,804 KB
testcase_19 AC 2,127 ms
186,800 KB
testcase_20 AC 2,125 ms
186,796 KB
testcase_21 AC 2,140 ms
186,804 KB
testcase_22 AC 2,166 ms
186,596 KB
testcase_23 AC 2,120 ms
186,800 KB
testcase_24 AC 2,122 ms
186,792 KB
testcase_25 AC 2,169 ms
186,808 KB
testcase_26 AC 2,097 ms
186,596 KB
testcase_27 AC 2,109 ms
186,704 KB
testcase_28 AC 2,138 ms
186,904 KB
testcase_29 AC 2,143 ms
187,320 KB
testcase_30 AC 2,281 ms
190,860 KB
testcase_31 AC 2,331 ms
192,816 KB
testcase_32 AC 2,325 ms
192,376 KB
testcase_33 AC 2,183 ms
189,024 KB
testcase_34 AC 2,331 ms
191,388 KB
testcase_35 AC 2,302 ms
190,844 KB
testcase_36 AC 2,310 ms
191,152 KB
testcase_37 AC 2,274 ms
190,972 KB
testcase_38 AC 2,308 ms
191,584 KB
testcase_39 AC 2,480 ms
190,008 KB
testcase_40 AC 2,260 ms
190,164 KB
testcase_41 AC 2,239 ms
190,008 KB
testcase_42 AC 2,134 ms
186,596 KB
testcase_43 AC 2,114 ms
186,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<random>
using namespace std;
#define int long long
#define REP(i,m,n) for(int i=(m);i<(n);i++)
#define rep(i,n) REP(i,0,n)
#define pb push_back
#define all(a) a.begin(),a.end()
#define rall(c) (c).rbegin(),(c).rend()
#define mp make_pair
#define endl '\n'
//#define vec vector<ll>
//#define mat vector<vector<ll> >
#define fi first
#define se second
#define double long double
typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll,ll> pll;
//typedef long double ld;
typedef complex<double> Complex;
const ll INF=1e9+7;
const ll MOD=998244353;
const ll inf=INF*INF;
const ll mod=INF;
const ll MAX=1000010;
const double PI=acos(-1.0);
typedef vector<vector<ll> > mat;
typedef vector<ll> vec;


signed main(){
    ll n;cin>>n;
    vector<ll>a(MAX);
    vector<ll>b(n);
    rep(i,n)cin>>b[i];
    vector<vector<ll> >p(MAX);
    REP(i,2,MAX){
        ll j=1;
        sort(all(p[i]));
        rep(l,p[i].size()){
            if(l>0&&p[i][l]==p[i][l-1])continue;
            if(p[i][l]==j)j++;
            else break;
        }
        a[i]=j;
        ll k=1;
        while(k*i<MAX){
            p[k*i].pb(a[i]);
            k++;
        }
    }
    ll ans=0;
    rep(i,n){
        ans^=a[b[i]];
    }
    if(ans!=0){
        cout<<"white"<<endl;
    }else{
        cout<<"black"<<endl;
    }
}
0