結果

問題 No.1665 quotient replace
ユーザー asumo0729asumo0729
提出日時 2021-09-04 01:21:29
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 746 bytes
コンパイル時間 840 ms
コンパイル使用メモリ 120,960 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-09 10:07:24
合計ジャッジ時間 6,689 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 23 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 14 ms
5,376 KB
testcase_09 AC 82 ms
5,376 KB
testcase_10 RE -
testcase_11 AC 43 ms
6,940 KB
testcase_12 AC 227 ms
6,940 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 7 ms
6,944 KB
testcase_27 AC 20 ms
6,944 KB
testcase_28 AC 86 ms
6,944 KB
testcase_29 AC 176 ms
6,948 KB
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 WA -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 WA -
testcase_43 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int A[100009];
int x = 0;
int N;

int factorize(int x){
    int cnt = 0;
    int temp = x;
    for (int i = 2; i * i <= x; i++){
        if (temp % i == 0){
            while ((temp % i) == 0) {
                temp /= i;
                cnt++;
            }
        }
    }
    if (temp != 1){
        cnt++;
    }
    if (cnt == 0){
        cnt++;
    }
    return cnt;
}

int main(){
    cin >> N;
    for (int i = 0; i < N; i++){
        cin >> A[i];
    }
    for (int i = 0; i < N; i++){
        int cnt;
        int temp;
        cnt = factorize(A[i]);
        x ^= cnt;
    }
    if (x == 0){
        cout << "black" << endl;
    }
    else{
        cout << "white" << endl;
    }
    return 0;
}
0