結果

問題 No.1665 quotient replace
ユーザー auauaauaua
提出日時 2021-09-03 22:15:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,336 bytes
コンパイル時間 2,044 ms
コンパイル使用メモリ 174,608 KB
実行使用メモリ 194,944 KB
最終ジャッジ日時 2024-05-09 04:35:14
合計ジャッジ時間 14,266 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,396 ms
187,008 KB
testcase_01 AC 2,417 ms
187,136 KB
testcase_02 AC 2,416 ms
187,008 KB
testcase_03 AC 2,402 ms
187,136 KB
testcase_04 AC 2,414 ms
187,008 KB
testcase_05 AC 2,410 ms
187,136 KB
testcase_06 AC 2,415 ms
187,264 KB
testcase_07 AC 2,432 ms
187,264 KB
testcase_08 AC 2,428 ms
187,008 KB
testcase_09 AC 2,448 ms
187,520 KB
testcase_10 AC 2,556 ms
189,568 KB
testcase_11 AC 2,642 ms
193,152 KB
testcase_12 AC 2,458 ms
187,904 KB
testcase_13 AC 2,739 ms
194,944 KB
testcase_14 AC 2,754 ms
194,816 KB
testcase_15 AC 2,757 ms
194,816 KB
testcase_16 AC 2,786 ms
194,944 KB
testcase_17 AC 2,752 ms
194,944 KB
testcase_18 AC 2,424 ms
187,264 KB
testcase_19 AC 2,454 ms
187,136 KB
testcase_20 AC 2,440 ms
187,136 KB
testcase_21 AC 2,427 ms
187,136 KB
testcase_22 AC 2,478 ms
187,264 KB
testcase_23 AC 2,431 ms
187,008 KB
testcase_24 AC 2,455 ms
187,008 KB
testcase_25 AC 2,457 ms
187,136 KB
testcase_26 AC 2,458 ms
187,008 KB
testcase_27 AC 2,434 ms
187,136 KB
testcase_28 AC 2,469 ms
187,520 KB
testcase_29 AC 2,468 ms
187,648 KB
testcase_30 AC 2,977 ms
191,104 KB
testcase_31 TLE -
testcase_32 AC 2,656 ms
192,640 KB
testcase_33 AC 2,549 ms
189,056 KB
testcase_34 AC 2,607 ms
191,488 KB
testcase_35 AC 2,612 ms
191,232 KB
testcase_36 AC 2,609 ms
191,616 KB
testcase_37 AC 2,579 ms
190,976 KB
testcase_38 AC 2,628 ms
191,744 KB
testcase_39 AC 2,583 ms
190,464 KB
testcase_40 AC 2,574 ms
190,336 KB
testcase_41 AC 2,570 ms
190,464 KB
testcase_42 AC 2,459 ms
187,264 KB
testcase_43 AC 2,430 ms
187,136 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