結果

問題 No.1665 quotient replace
ユーザー KKT89KKT89
提出日時 2021-09-03 23:30:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,187 bytes
コンパイル時間 1,554 ms
コンパイル使用メモリ 129,124 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2024-05-09 07:34:49
合計ジャッジ時間 24,915 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 18 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 11 ms
5,376 KB
testcase_09 AC 67 ms
5,376 KB
testcase_10 AC 719 ms
5,888 KB
testcase_11 AC 1,621 ms
9,272 KB
testcase_12 AC 174 ms
5,376 KB
testcase_13 AC 2,129 ms
11,008 KB
testcase_14 AC 2,135 ms
11,008 KB
testcase_15 AC 2,167 ms
11,156 KB
testcase_16 AC 2,170 ms
11,008 KB
testcase_17 AC 2,165 ms
11,008 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 16 ms
5,376 KB
testcase_27 AC 46 ms
5,376 KB
testcase_28 AC 223 ms
5,376 KB
testcase_29 AC 455 ms
5,376 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <queue>
#include <cstdio>
#include <ctime>
#include <assert.h>
#include <chrono>
#include <random>
#include <numeric>
#include <set>
#include <deque>
#include <stack>
#include <sstream>
#include <utility>
#include <cstring>
using namespace std;
typedef long long int ll;
typedef unsigned long long ull;

mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
ll myRand(ll B) {
    return (ull)rng() % B;
}

template<typename T>
map<T,ll> factorize(T x){
    map<T,ll> res;
    for(ll i=2;i*i<=x;i++){
        while(x%i==0){
            x/=i;
            res[i]++;
        }
    }
    if(x!=1) res[x]++;
    return res;
}

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n; cin >> n;
    vector<ll> a(n);
    ll k=0;
    for(int i=0;i<n;i++){
        cin >> a[i];
        auto m=factorize(a[i]);
        a[i]=0;
        for(auto p:m){
            a[i]+=(p.second);
        }
        //cout << a[i] << endl;
        k^=a[i];
    }
    if(k){
        cout << "white" << endl;
    }
    else{
        cout << "black" << endl; 
    }
}
0