結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,931 ms
224,196 KB
testcase_01 AC 1,940 ms
224,564 KB
testcase_02 AC 1,919 ms
224,692 KB
testcase_03 AC 1,902 ms
224,432 KB
testcase_04 AC 1,887 ms
224,564 KB
testcase_05 AC 1,872 ms
224,684 KB
testcase_06 AC 1,839 ms
224,560 KB
testcase_07 AC 1,868 ms
224,432 KB
testcase_08 AC 1,917 ms
224,564 KB
testcase_09 AC 1,991 ms
224,456 KB
testcase_10 AC 1,932 ms
224,560 KB
testcase_11 AC 1,978 ms
224,436 KB
testcase_12 AC 1,874 ms
224,556 KB
testcase_13 AC 1,977 ms
224,424 KB
testcase_14 AC 1,986 ms
224,560 KB
testcase_15 AC 2,021 ms
224,556 KB
testcase_16 AC 2,028 ms
224,560 KB
testcase_17 AC 2,030 ms
224,520 KB
testcase_18 AC 1,883 ms
224,428 KB
testcase_19 AC 1,896 ms
224,356 KB
testcase_20 AC 1,891 ms
224,564 KB
testcase_21 AC 1,874 ms
224,560 KB
testcase_22 AC 1,865 ms
224,436 KB
testcase_23 AC 1,893 ms
224,324 KB
testcase_24 AC 1,915 ms
224,432 KB
testcase_25 AC 1,885 ms
224,548 KB
testcase_26 AC 1,870 ms
224,688 KB
testcase_27 AC 1,874 ms
224,320 KB
testcase_28 AC 1,913 ms
224,464 KB
testcase_29 AC 1,919 ms
224,296 KB
testcase_30 AC 1,956 ms
224,328 KB
testcase_31 AC 2,009 ms
224,436 KB
testcase_32 AC 2,022 ms
224,304 KB
testcase_33 AC 1,911 ms
224,304 KB
testcase_34 AC 1,962 ms
224,428 KB
testcase_35 AC 1,922 ms
224,324 KB
testcase_36 AC 1,962 ms
224,436 KB
testcase_37 AC 1,930 ms
224,560 KB
testcase_38 AC 1,995 ms
224,432 KB
testcase_39 AC 1,995 ms
224,296 KB
testcase_40 AC 1,988 ms
224,424 KB
testcase_41 AC 1,971 ms
224,476 KB
testcase_42 AC 1,908 ms
224,688 KB
testcase_43 AC 1,885 ms
224,436 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