結果

問題 No.1665 quotient replace
ユーザー otoshigootoshigo
提出日時 2021-09-14 15:57:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 472 ms / 3,000 ms
コード長 1,048 bytes
コンパイル時間 2,378 ms
コンパイル使用メモリ 200,568 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-06-27 06:18:13
合計ジャッジ時間 12,539 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
7,100 KB
testcase_01 AC 31 ms
7,168 KB
testcase_02 AC 30 ms
7,088 KB
testcase_03 AC 31 ms
7,268 KB
testcase_04 AC 32 ms
7,092 KB
testcase_05 AC 32 ms
7,092 KB
testcase_06 AC 35 ms
7,112 KB
testcase_07 AC 31 ms
7,112 KB
testcase_08 AC 33 ms
6,972 KB
testcase_09 AC 43 ms
7,200 KB
testcase_10 AC 173 ms
7,168 KB
testcase_11 AC 353 ms
6,976 KB
testcase_12 AC 63 ms
7,084 KB
testcase_13 AC 464 ms
7,120 KB
testcase_14 AC 472 ms
6,980 KB
testcase_15 AC 463 ms
7,120 KB
testcase_16 AC 464 ms
7,040 KB
testcase_17 AC 470 ms
7,120 KB
testcase_18 AC 30 ms
7,156 KB
testcase_19 AC 31 ms
7,048 KB
testcase_20 AC 30 ms
7,148 KB
testcase_21 AC 31 ms
7,056 KB
testcase_22 AC 30 ms
7,040 KB
testcase_23 AC 30 ms
6,972 KB
testcase_24 AC 31 ms
7,112 KB
testcase_25 AC 31 ms
7,176 KB
testcase_26 AC 31 ms
7,168 KB
testcase_27 AC 32 ms
7,064 KB
testcase_28 AC 41 ms
7,092 KB
testcase_29 AC 53 ms
7,152 KB
testcase_30 AC 209 ms
7,168 KB
testcase_31 AC 287 ms
7,196 KB
testcase_32 AC 339 ms
7,168 KB
testcase_33 AC 150 ms
7,264 KB
testcase_34 AC 295 ms
7,128 KB
testcase_35 AC 258 ms
7,160 KB
testcase_36 AC 279 ms
7,060 KB
testcase_37 AC 261 ms
7,040 KB
testcase_38 AC 299 ms
7,060 KB
testcase_39 AC 214 ms
7,032 KB
testcase_40 AC 227 ms
7,084 KB
testcase_41 AC 222 ms
7,296 KB
testcase_42 AC 32 ms
7,112 KB
testcase_43 AC 31 ms
7,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//#define _GLIBCXX_DEBUG
#include <bits/stdc++.h>
#include <iostream>
#include <algorithm>
using namespace std;
using ll = long long;
using pii = pair<int,int>;
using pll = pair<ll,ll>;
using vi = vector<int>;  using vvi = vector<vi>;
using vl = vector<ll>;   using vvl = vector<vl>;
using vb = vector<bool>; using vvb = vector<vb>;
using vpi = vector<pii>; using vvpi = vector<vpi>;
using vpl = vector<pll>; using vvpl = vector<vpl>;
const int inf = 1 << 30;
const ll INF = 1LL << 60;
#define rep(i,m,n) for (int i = m; i < (int)(n); i++)
#define rrep(i,m,n) for (int i = m; i > (int)(n); i--)

int main(){
    int M = 1000001;
    int n; cin >> n;
    vi P(M,0);
    P[1] = 1;
    for (int i = 2;i < M;i++){
        for (int j = i;j < M; j += i){
            if (P[j] == 0) P[j] = i;
        }
    }
    int judge = 0;
    rep(i,0,n){
        int a,x = 0; cin >> a;
        while (a > 1){
            a /= P[a];
            ++x;
        }
        judge ^= x;
    }
    if (judge != 0) cout << "white" << endl;
    else cout << "black" << endl;
}
0