結果

問題 No.1665 quotient replace
ユーザー KKT89KKT89
提出日時 2021-09-03 23:33:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,540 ms / 3,000 ms
コード長 1,175 bytes
コンパイル時間 1,580 ms
コンパイル使用メモリ 123,392 KB
実行使用メモリ 15,004 KB
最終ジャッジ日時 2024-05-09 07:41:24
合計ジャッジ時間 25,007 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,168 KB
testcase_01 AC 4 ms
7,168 KB
testcase_02 AC 5 ms
7,144 KB
testcase_03 AC 6 ms
7,296 KB
testcase_04 AC 6 ms
7,296 KB
testcase_05 AC 4 ms
7,248 KB
testcase_06 AC 23 ms
7,184 KB
testcase_07 AC 7 ms
7,296 KB
testcase_08 AC 14 ms
7,168 KB
testcase_09 AC 72 ms
7,396 KB
testcase_10 AC 669 ms
9,796 KB
testcase_11 AC 1,271 ms
13,184 KB
testcase_12 AC 184 ms
7,936 KB
testcase_13 AC 1,518 ms
14,976 KB
testcase_14 AC 1,526 ms
14,972 KB
testcase_15 AC 1,540 ms
14,976 KB
testcase_16 AC 1,536 ms
15,004 KB
testcase_17 AC 1,536 ms
14,948 KB
testcase_18 AC 4 ms
7,296 KB
testcase_19 AC 4 ms
7,172 KB
testcase_20 AC 4 ms
7,256 KB
testcase_21 AC 5 ms
7,164 KB
testcase_22 AC 5 ms
7,148 KB
testcase_23 AC 5 ms
7,256 KB
testcase_24 AC 5 ms
7,168 KB
testcase_25 AC 5 ms
7,088 KB
testcase_26 AC 20 ms
7,100 KB
testcase_27 AC 54 ms
7,296 KB
testcase_28 AC 203 ms
7,552 KB
testcase_29 AC 343 ms
7,808 KB
testcase_30 AC 657 ms
11,200 KB
testcase_31 AC 706 ms
13,184 KB
testcase_32 AC 1,230 ms
12,928 KB
testcase_33 AC 552 ms
9,208 KB
testcase_34 AC 1,040 ms
11,776 KB
testcase_35 AC 968 ms
11,264 KB
testcase_36 AC 1,006 ms
11,596 KB
testcase_37 AC 935 ms
11,144 KB
testcase_38 AC 1,091 ms
11,904 KB
testcase_39 AC 811 ms
10,564 KB
testcase_40 AC 813 ms
10,496 KB
testcase_41 AC 811 ms
10,520 KB
testcase_42 AC 6 ms
7,168 KB
testcase_43 AC 5 ms
7,244 KB
権限があれば一括ダウンロードができます

ソースコード

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;
}

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n; cin >> n;
    vector<ll> a(n);
    vector<int> memo(1000001);
    ll k=0;
    for(int i=0;i<n;i++){
        cin >> a[i];
        if(memo[a[i]]>0){
            k^=memo[a[i]];
            continue;
        }
        int aa = a[i];
        int sum = 0;
        for(int j=2;j*j<=a[i];j++){
            while(a[i]%j==0){
                sum++;
                a[i]/=j;
            }
        }
        if(a[i]>1)sum++;
        k^=sum;
        memo[aa] = sum;
    }
    if(k){
        cout << "white" << endl;
    }
    else{
        cout << "black" << endl; 
    }
}
0