結果

問題 No.1665 quotient replace
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-06-07 02:14:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 806 bytes
コンパイル時間 1,158 ms
コンパイル使用メモリ 112,104 KB
実行使用メモリ 191,980 KB
最終ジャッジ日時 2024-06-09 06:27:32
合計ジャッジ時間 114,757 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,221 ms
191,796 KB
testcase_01 AC 2,215 ms
191,912 KB
testcase_02 AC 2,201 ms
191,876 KB
testcase_03 AC 2,226 ms
191,888 KB
testcase_04 AC 2,198 ms
191,772 KB
testcase_05 AC 2,145 ms
191,808 KB
testcase_06 AC 2,210 ms
191,908 KB
testcase_07 AC 2,181 ms
191,840 KB
testcase_08 AC 2,183 ms
191,792 KB
testcase_09 AC 2,235 ms
191,800 KB
testcase_10 AC 2,848 ms
191,832 KB
testcase_11 AC 2,934 ms
191,864 KB
testcase_12 AC 2,336 ms
191,836 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 2,994 ms
191,868 KB
testcase_18 AC 2,128 ms
191,800 KB
testcase_19 AC 2,141 ms
191,796 KB
testcase_20 AC 2,139 ms
191,860 KB
testcase_21 AC 2,212 ms
191,816 KB
testcase_22 AC 2,315 ms
191,772 KB
testcase_23 AC 2,166 ms
191,860 KB
testcase_24 AC 2,187 ms
191,868 KB
testcase_25 AC 2,151 ms
191,884 KB
testcase_26 AC 2,137 ms
191,912 KB
testcase_27 AC 2,143 ms
191,796 KB
testcase_28 AC 2,190 ms
191,840 KB
testcase_29 AC 2,191 ms
191,840 KB
testcase_30 AC 2,346 ms
191,908 KB
testcase_31 AC 2,467 ms
191,832 KB
testcase_32 AC 2,850 ms
191,828 KB
testcase_33 AC 2,469 ms
191,808 KB
testcase_34 AC 2,766 ms
191,868 KB
testcase_35 AC 2,761 ms
191,808 KB
testcase_36 AC 2,965 ms
191,856 KB
testcase_37 AC 2,747 ms
191,800 KB
testcase_38 AC 2,810 ms
191,980 KB
testcase_39 AC 2,635 ms
191,804 KB
testcase_40 AC 2,616 ms
191,864 KB
testcase_41 AC 2,626 ms
191,876 KB
testcase_42 AC 2,201 ms
191,816 KB
testcase_43 AC 2,220 ms
191,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using namespace std;
using ll = long long;
vector<vector<ll>> fac(1e6+1);
vector<ll> ans(1e6+1, -1);

ll f(ll N){
    if (N == 1) return 0;
    if (ans[N] != -1) return ans[N];
    vector<ll> ok(500);
    for (auto x : fac[N]) ok[f(x)] = 1;
    ll g = 0;
    while(ok[g]) g++;
    return ans[N] = g;
}

int main(){

    ll N, g=0, A;
    cin >> N;
    for (int i=1; i<=1e6; i++){
        for (int j=i*2; j<=1e6; j+=i) fac[j].push_back(i);
    }
    for (int i=0; i<N; i++){
        cin >> A;
        g ^= f(A);
    }
    
    cout << (g == 0 ? "black" : "white") << endl;

    return 0;
}
0