結果

問題 No.1665 quotient replace
ユーザー karinohitokarinohito
提出日時 2021-09-03 23:01:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 690 bytes
コンパイル時間 1,514 ms
コンパイル使用メモリ 169,336 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-09 06:25:31
合計ジャッジ時間 7,794 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
5,248 KB
testcase_01 AC 10 ms
5,376 KB
testcase_02 AC 9 ms
5,376 KB
testcase_03 AC 9 ms
5,376 KB
testcase_04 AC 9 ms
5,376 KB
testcase_05 AC 9 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 9 ms
5,376 KB
testcase_08 AC 10 ms
5,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 237 ms
5,376 KB
testcase_12 WA -
testcase_13 AC 307 ms
5,376 KB
testcase_14 AC 308 ms
5,376 KB
testcase_15 AC 309 ms
5,376 KB
testcase_16 AC 307 ms
5,376 KB
testcase_17 WA -
testcase_18 AC 9 ms
5,376 KB
testcase_19 WA -
testcase_20 AC 9 ms
5,376 KB
testcase_21 AC 8 ms
5,376 KB
testcase_22 AC 10 ms
5,376 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 9 ms
5,376 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 18 ms
5,376 KB
testcase_29 WA -
testcase_30 AC 160 ms
5,376 KB
testcase_31 AC 240 ms
5,376 KB
testcase_32 AC 224 ms
5,376 KB
testcase_33 WA -
testcase_34 AC 182 ms
5,376 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 160 ms
5,376 KB
testcase_38 AC 191 ms
5,376 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 9 ms
5,376 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<bool> P(1e6+10, true);
    P[0] = P[1] = false;
    rep(p, 1e6 + 10) {
        if (P[p]) {
            for (ll j = p + p; j <= 1e6 + 4; j += p) {
                P[j] = false;
            }
        }

    }
    ll N;
    cin >> N;
    ll AN = 0;
    rep(i, N) {
        ll A;
        cin >> A;
        if (!P[A])AN++;
        
    }
    cout << (AN % 2 == 0 ? "black" : "white") << endl;
}
0