結果

問題 No.1665 quotient replace
ユーザー shakayamishakayami
提出日時 2021-09-03 21:41:29
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,685 ms / 3,000 ms
コード長 518 bytes
コンパイル時間 1,857 ms
コンパイル使用メモリ 193,888 KB
最終ジャッジ日時 2025-01-24 05:15:03
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 41
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int prime_count(int K){
    int res=0;
    int p=2;
    while(p*p<=K){
        while(K%p==0){
            res++;
            K/=p;
        }
        p++;
    }
    if (K>1){
        res++;
    }
    return res;
}
int main(void){
    int N;
    cin>>N;
    int Grundy=0;
    for(int i=0;i<N;i++){
        int A;
        cin>>A;
        Grundy^=prime_count(A);
    }
    if (Grundy==0){
        cout<<"black"<<endl;
    }
    else{
        cout<<"white"<<endl;
    }
    
}
0