結果

問題 No.1665 quotient replace
ユーザー karinohitokarinohito
提出日時 2021-09-03 23:06:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 537 ms / 3,000 ms
コード長 826 bytes
コンパイル時間 1,572 ms
コンパイル使用メモリ 168,432 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-05-09 06:38:19
合計ジャッジ時間 10,373 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
11,024 KB
testcase_01 AC 13 ms
11,008 KB
testcase_02 AC 15 ms
11,028 KB
testcase_03 AC 14 ms
11,136 KB
testcase_04 AC 14 ms
11,008 KB
testcase_05 AC 14 ms
11,008 KB
testcase_06 AC 17 ms
11,008 KB
testcase_07 AC 14 ms
11,028 KB
testcase_08 AC 15 ms
11,008 KB
testcase_09 AC 27 ms
11,008 KB
testcase_10 AC 187 ms
11,004 KB
testcase_11 AC 387 ms
10,968 KB
testcase_12 AC 55 ms
11,084 KB
testcase_13 AC 533 ms
11,008 KB
testcase_14 AC 536 ms
11,136 KB
testcase_15 AC 511 ms
11,136 KB
testcase_16 AC 523 ms
11,008 KB
testcase_17 AC 537 ms
11,072 KB
testcase_18 AC 14 ms
11,008 KB
testcase_19 AC 14 ms
11,004 KB
testcase_20 AC 14 ms
11,136 KB
testcase_21 AC 14 ms
11,072 KB
testcase_22 AC 16 ms
11,008 KB
testcase_23 AC 14 ms
11,136 KB
testcase_24 AC 14 ms
11,096 KB
testcase_25 AC 14 ms
11,008 KB
testcase_26 AC 14 ms
11,008 KB
testcase_27 AC 16 ms
11,008 KB
testcase_28 AC 25 ms
11,088 KB
testcase_29 AC 37 ms
11,008 KB
testcase_30 AC 199 ms
11,008 KB
testcase_31 AC 298 ms
11,008 KB
testcase_32 AC 382 ms
11,008 KB
testcase_33 AC 149 ms
11,020 KB
testcase_34 AC 296 ms
11,008 KB
testcase_35 AC 283 ms
10,996 KB
testcase_36 AC 294 ms
11,136 KB
testcase_37 AC 272 ms
10,968 KB
testcase_38 AC 322 ms
10,996 KB
testcase_39 AC 213 ms
11,008 KB
testcase_40 AC 229 ms
11,008 KB
testcase_41 AC 236 ms
11,136 KB
testcase_42 AC 14 ms
11,008 KB
testcase_43 AC 12 ms
11,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include<atcoder/all>
using namespace std;
//using namespace atcoder;
using ll = long long;
#define all(A) A.begin(),A.end()
using vll = vector<ll>;
#define rep(i, n) for (long long i = 0; i < (long long)(n); i++)
using Graph = vector<vector<ll>>;


int main() {
    vector<ll> P(1e6+10, -1);
    rep(i, 1e6 + 10) {
        P[i] = i;
    }
    P[0] = P[1] = -1;
    rep(p, 1e6 + 10) {
        if (P[p]==p) {
            for (ll j = p + p; j <= 1e6 + 4; j += p) {
                if(P[j]==j)P[j] = p;
            }
        }

    }
    ll N;
    cin >> N;
    ll AN = 0;
    rep(i, N) {
        ll A;
        cin >> A;

        ll k = 0;
        while (A != 1) {
            A /= P[A];
            k++;
        }
        AN = AN ^ k;
        
    }
    cout << (AN== 0 ? "black" : "white") << endl;
}
0