結果

問題 No.1665 quotient replace
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-01-16 20:44:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 526 ms / 3,000 ms
コード長 949 bytes
コンパイル時間 945 ms
コンパイル使用メモリ 116,788 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-06-10 02:38:19
合計ジャッジ時間 9,631 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
11,008 KB
testcase_01 AC 9 ms
11,072 KB
testcase_02 AC 10 ms
11,088 KB
testcase_03 AC 11 ms
11,136 KB
testcase_04 AC 11 ms
11,072 KB
testcase_05 AC 9 ms
11,136 KB
testcase_06 AC 13 ms
11,136 KB
testcase_07 AC 9 ms
11,136 KB
testcase_08 AC 11 ms
11,008 KB
testcase_09 AC 23 ms
11,136 KB
testcase_10 AC 180 ms
11,136 KB
testcase_11 AC 391 ms
11,008 KB
testcase_12 AC 49 ms
11,064 KB
testcase_13 AC 508 ms
11,136 KB
testcase_14 AC 505 ms
11,008 KB
testcase_15 AC 516 ms
11,136 KB
testcase_16 AC 526 ms
11,264 KB
testcase_17 AC 515 ms
11,136 KB
testcase_18 AC 10 ms
11,004 KB
testcase_19 AC 9 ms
11,008 KB
testcase_20 AC 10 ms
11,136 KB
testcase_21 AC 9 ms
11,136 KB
testcase_22 AC 9 ms
11,008 KB
testcase_23 AC 9 ms
11,004 KB
testcase_24 AC 9 ms
11,008 KB
testcase_25 AC 9 ms
11,136 KB
testcase_26 AC 10 ms
11,008 KB
testcase_27 AC 12 ms
11,124 KB
testcase_28 AC 22 ms
11,008 KB
testcase_29 AC 35 ms
11,116 KB
testcase_30 AC 189 ms
11,136 KB
testcase_31 AC 274 ms
11,136 KB
testcase_32 AC 381 ms
11,008 KB
testcase_33 AC 145 ms
11,008 KB
testcase_34 AC 313 ms
11,056 KB
testcase_35 AC 286 ms
11,008 KB
testcase_36 AC 289 ms
11,136 KB
testcase_37 AC 271 ms
11,008 KB
testcase_38 AC 323 ms
11,008 KB
testcase_39 AC 218 ms
11,228 KB
testcase_40 AC 224 ms
11,008 KB
testcase_41 AC 222 ms
11,116 KB
testcase_42 AC 11 ms
11,136 KB
testcase_43 AC 10 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <sstream>

using namespace std;

vector<long long> spf;
map<long long, long long> prime;

void osa_k(long long n){
    spf.resize(n+1);
    for (long long i=0; i<=n; i++) spf[i] = i;
    for (long long i=2; i*i<=n; i++){
        if (spf[i] == i){
            for (long long j=2; i*j <= n; j++){
                spf[i*j] = min(spf[i*j], i);
            }
        }
    }
}

int prime_factor(long long n){
    prime.clear();
    int cnt = 0;
    while(n != 1){
        cnt++;
        prime[spf[n]]++;
        n /= spf[n];
    }
    return cnt;
}

int main(){
    osa_k(1000000);
    int N, A, g=0;
    cin >> N;

    for (int i=0; i<N; i++){
        cin >> A;
        g ^= prime_factor(A);
    }

    cout << (g == 0 ? "black" : "white") << endl;

    return 0;
}
0