結果

問題 No.1665 quotient replace
ユーザー KKT89KKT89
提出日時 2021-09-03 23:32:11
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,012 bytes
コンパイル時間 1,600 ms
コンパイル使用メモリ 121,180 KB
実行使用メモリ 13,636 KB
最終ジャッジ日時 2024-12-15 18:34:09
合計ジャッジ時間 35,882 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 4 ms
5,248 KB
testcase_04 AC 4 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 20 ms
5,248 KB
testcase_07 AC 6 ms
5,248 KB
testcase_08 AC 12 ms
5,248 KB
testcase_09 AC 67 ms
5,248 KB
testcase_10 AC 720 ms
5,888 KB
testcase_11 AC 1,613 ms
9,188 KB
testcase_12 AC 180 ms
5,248 KB
testcase_13 AC 2,177 ms
11,136 KB
testcase_14 AC 2,119 ms
11,136 KB
testcase_15 AC 2,111 ms
11,136 KB
testcase_16 AC 2,116 ms
11,136 KB
testcase_17 AC 2,117 ms
11,136 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 15 ms
5,248 KB
testcase_27 AC 50 ms
5,248 KB
testcase_28 AC 229 ms
5,248 KB
testcase_29 AC 468 ms
5,248 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 1,531 ms
8,960 KB
testcase_33 AC 578 ms
5,376 KB
testcase_34 AC 1,232 ms
7,788 KB
testcase_35 AC 1,126 ms
7,328 KB
testcase_36 AC 1,179 ms
7,680 KB
testcase_37 AC 1,083 ms
7,168 KB
testcase_38 AC 1,298 ms
8,172 KB
testcase_39 AC 902 ms
6,656 KB
testcase_40 AC 921 ms
6,528 KB
testcase_41 AC 904 ms
6,656 KB
testcase_42 AC 2 ms
5,248 KB
testcase_43 AC 2 ms
10,496 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);
    ll k=0;
    for(int i=0;i<n;i++){
        cin >> 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;
    }
    if(k){
        cout << "white" << endl;
    }
    else{
        cout << "black" << endl; 
    }
}
0