結果

問題 No.1665 quotient replace
ユーザー shiroha_F14shiroha_F14
提出日時 2021-08-25 14:23:48
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 518 bytes
コンパイル時間 1,660 ms
コンパイル使用メモリ 170,332 KB
実行使用メモリ 11,308 KB
最終ジャッジ日時 2024-12-15 08:58:54
合計ジャッジ時間 48,355 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 WA -
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 4 ms
6,816 KB
testcase_04 AC 6 ms
6,820 KB
testcase_05 WA -
testcase_06 AC 30 ms
6,816 KB
testcase_07 AC 7 ms
6,820 KB
testcase_08 AC 18 ms
6,820 KB
testcase_09 AC 113 ms
6,820 KB
testcase_10 AC 1,206 ms
6,820 KB
testcase_11 AC 2,679 ms
9,396 KB
testcase_12 AC 288 ms
6,820 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 2 ms
6,816 KB
testcase_19 WA -
testcase_20 AC 3 ms
6,816 KB
testcase_21 AC 1 ms
6,816 KB
testcase_22 AC 2 ms
6,820 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 2 ms
6,816 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 111 ms
6,816 KB
testcase_29 WA -
testcase_30 AC 1,769 ms
7,168 KB
testcase_31 AC 2,601 ms
9,252 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 1,845 ms
7,168 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 2 ms
6,816 KB
testcase_43 AC 1 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using ll = long long;

int main(){
  int n; cin >> n;
  vector<int> a(n);
  for(int i = 0; i < n; i++) cin >> a[i];

  vector<int> grundy(n, 0);
  for(int i = 0; i < n; i++){
    int p = a[i];
    for(int j = 2; j <= ceil(sqrt(a[i])); j++){
      while(p % j == 0){
        p /= j;
        grundy[i]++;
      }
    }
  }
  
  // all xor
  int nimber = 0;
  for(int i = 0; i < n; i++){
    nimber = nimber ^ grundy[i];
  }
  cout << (nimber ? "white" : "black") << endl;
}
0