結果

問題 No.1665 quotient replace
ユーザー chocoruskchocorusk
提出日時 2021-09-03 21:52:34
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2,392 ms / 3,000 ms
コード長 1,445 bytes
コンパイル時間 3,715 ms
コンパイル使用メモリ 194,024 KB
実行使用メモリ 224,456 KB
最終ジャッジ日時 2024-12-15 12:52:12
合計ジャッジ時間 108,952 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,225 ms
224,320 KB
testcase_01 AC 2,241 ms
224,432 KB
testcase_02 AC 2,244 ms
224,328 KB
testcase_03 AC 2,223 ms
224,324 KB
testcase_04 AC 2,245 ms
224,196 KB
testcase_05 AC 2,232 ms
224,328 KB
testcase_06 AC 2,236 ms
224,196 KB
testcase_07 AC 2,223 ms
224,196 KB
testcase_08 AC 2,226 ms
224,320 KB
testcase_09 AC 2,243 ms
224,428 KB
testcase_10 AC 2,317 ms
224,192 KB
testcase_11 AC 2,347 ms
224,304 KB
testcase_12 AC 2,253 ms
224,196 KB
testcase_13 AC 2,378 ms
224,432 KB
testcase_14 AC 2,390 ms
224,456 KB
testcase_15 AC 2,388 ms
224,200 KB
testcase_16 AC 2,392 ms
224,324 KB
testcase_17 AC 2,371 ms
224,324 KB
testcase_18 AC 2,241 ms
224,200 KB
testcase_19 AC 2,216 ms
224,328 KB
testcase_20 AC 2,221 ms
224,320 KB
testcase_21 AC 2,236 ms
224,196 KB
testcase_22 AC 2,238 ms
224,200 KB
testcase_23 AC 2,252 ms
224,196 KB
testcase_24 AC 2,242 ms
224,320 KB
testcase_25 AC 2,223 ms
224,196 KB
testcase_26 AC 2,235 ms
224,200 KB
testcase_27 AC 2,237 ms
224,200 KB
testcase_28 AC 2,231 ms
224,200 KB
testcase_29 AC 2,240 ms
224,200 KB
testcase_30 AC 2,278 ms
224,320 KB
testcase_31 AC 2,340 ms
224,192 KB
testcase_32 AC 2,364 ms
224,300 KB
testcase_33 AC 2,269 ms
224,308 KB
testcase_34 AC 2,334 ms
224,196 KB
testcase_35 AC 2,331 ms
224,196 KB
testcase_36 AC 2,331 ms
224,324 KB
testcase_37 AC 2,314 ms
224,320 KB
testcase_38 AC 2,347 ms
224,304 KB
testcase_39 AC 2,320 ms
224,324 KB
testcase_40 AC 2,319 ms
224,324 KB
testcase_41 AC 2,297 ms
224,200 KB
testcase_42 AC 2,238 ms
224,428 KB
testcase_43 AC 2,232 ms
224,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#include <atcoder/all>
#define popcount __builtin_popcount
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<int, int> P;
// using mint=modint998244353;
// mint f[2000010], invf[2000010];
// void fac(int n){
//     f[0]=1;
//     for(ll i=1; i<=n; i++) f[i]=f[i-1]*i;
//     invf[n]=f[n].inv();
//     for(ll i=n-1; i>=0; i--) invf[i]=invf[i+1]*(i+1);
// }
// mint comb(int x, int y){
//     if(!(0<=y && y<=x)) return 0;
//     return f[x]*invf[y]*invf[x-y];
// }
set<int> st[1000010];
int g[1000010];
int main()
{
    for(int d=1; d<=1000000; d++){
        for(int i=0; ; i++){
            if(st[d].find(i)==st[d].end()){
                g[d]=i;break;
            }
        }
        for(int i=2*d; i<=1000000; i+=d){
            st[i].insert(g[d]);
        }
    }
    int n; cin>>n;
    int s=0;
    for(int i=0; i<n; i++){
        int a;
        scanf("%d", &a);
        s^=g[a];
    }
    if(s) cout<<"white"<<endl;
    else cout<<"black"<<endl;
    return 0;
}
0