結果

問題 No.1665 quotient replace
ユーザー kai4096_donkai4096_don
提出日時 2021-09-09 23:07:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 988 bytes
コンパイル時間 3,458 ms
コンパイル使用メモリ 235,668 KB
実行使用メモリ 228,224 KB
最終ジャッジ日時 2024-06-10 03:56:49
合計ジャッジ時間 113,268 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,336 ms
227,968 KB
testcase_01 AC 2,255 ms
227,928 KB
testcase_02 AC 2,295 ms
227,984 KB
testcase_03 AC 2,274 ms
228,096 KB
testcase_04 AC 2,289 ms
228,224 KB
testcase_05 AC 2,253 ms
228,096 KB
testcase_06 AC 2,263 ms
227,968 KB
testcase_07 AC 2,302 ms
228,096 KB
testcase_08 AC 2,293 ms
228,076 KB
testcase_09 AC 2,294 ms
228,072 KB
testcase_10 AC 2,374 ms
228,096 KB
testcase_11 AC 2,515 ms
228,096 KB
testcase_12 AC 2,329 ms
228,096 KB
testcase_13 TLE -
testcase_14 AC 2,669 ms
228,096 KB
testcase_15 AC 2,632 ms
228,096 KB
testcase_16 AC 2,644 ms
228,096 KB
testcase_17 AC 2,568 ms
228,096 KB
testcase_18 AC 2,465 ms
228,020 KB
testcase_19 AC 2,283 ms
228,068 KB
testcase_20 AC 2,275 ms
227,968 KB
testcase_21 AC 2,272 ms
228,096 KB
testcase_22 AC 2,283 ms
228,060 KB
testcase_23 AC 2,338 ms
228,064 KB
testcase_24 AC 2,271 ms
227,876 KB
testcase_25 AC 2,248 ms
228,048 KB
testcase_26 AC 2,279 ms
227,988 KB
testcase_27 AC 2,315 ms
227,992 KB
testcase_28 AC 2,296 ms
227,964 KB
testcase_29 AC 2,273 ms
228,224 KB
testcase_30 AC 2,407 ms
227,968 KB
testcase_31 AC 2,461 ms
228,096 KB
testcase_32 AC 2,498 ms
227,968 KB
testcase_33 AC 2,344 ms
228,096 KB
testcase_34 AC 2,485 ms
227,968 KB
testcase_35 AC 2,605 ms
228,096 KB
testcase_36 AC 2,454 ms
228,096 KB
testcase_37 AC 2,443 ms
228,096 KB
testcase_38 AC 2,525 ms
227,968 KB
testcase_39 AC 2,401 ms
228,096 KB
testcase_40 AC 2,477 ms
227,968 KB
testcase_41 AC 2,455 ms
228,096 KB
testcase_42 AC 2,252 ms
227,968 KB
testcase_43 AC 2,319 ms
227,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
//const long nPrime = 1000000007;
//const long nPrime = 998244353;
typedef long long ll;
int main() {
    long nMax = 1000001;
    vector<long> viGrundy(nMax,0);
    vector<set<long>> vsiNum(nMax);
    for(long i = 1; i < nMax; i++){
        vsiNum[i].insert(0);
    }
    for(long i = 2; i < nMax; i++){
        for(auto itr = vsiNum[i].begin(); itr != vsiNum[i].end(); itr++){
            if(*itr == viGrundy[i]){
                viGrundy[i]++;
            } else {
                break;
            }
        }
        for(long j = 2; i*j < nMax; j++){
            vsiNum[i*j].insert(viGrundy[i]);
        }
    }
    
    long n;
    cin >> n;
    long nSum = 0;
    for(long i = 0; i < n; i++){
        long a;
        cin >> a;
        nSum ^= viGrundy[a];
    }
    if(nSum != 0){
        cout << "white" << endl;
    } else {
        cout << "black" << endl;
    }
    
    return 0;
}
0