結果

問題 No.1665 quotient replace
ユーザー 👑 NachiaNachia
提出日時 2021-09-03 21:26:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 151 ms / 3,000 ms
コード長 747 bytes
コンパイル時間 1,710 ms
コンパイル使用メモリ 108,808 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-12-15 09:54:10
合計ジャッジ時間 5,983 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
7,040 KB
testcase_01 AC 12 ms
7,168 KB
testcase_02 AC 12 ms
7,040 KB
testcase_03 AC 12 ms
7,168 KB
testcase_04 AC 14 ms
7,040 KB
testcase_05 AC 13 ms
7,088 KB
testcase_06 AC 13 ms
7,168 KB
testcase_07 AC 12 ms
7,040 KB
testcase_08 AC 13 ms
6,952 KB
testcase_09 AC 15 ms
6,948 KB
testcase_10 AC 59 ms
7,088 KB
testcase_11 AC 114 ms
7,040 KB
testcase_12 AC 22 ms
7,168 KB
testcase_13 AC 150 ms
6,912 KB
testcase_14 AC 150 ms
6,984 KB
testcase_15 AC 149 ms
7,168 KB
testcase_16 AC 151 ms
7,136 KB
testcase_17 AC 146 ms
7,124 KB
testcase_18 AC 12 ms
7,148 KB
testcase_19 AC 12 ms
7,168 KB
testcase_20 AC 12 ms
7,168 KB
testcase_21 AC 13 ms
7,168 KB
testcase_22 AC 12 ms
6,980 KB
testcase_23 AC 13 ms
7,168 KB
testcase_24 AC 12 ms
6,976 KB
testcase_25 AC 13 ms
7,168 KB
testcase_26 AC 12 ms
7,040 KB
testcase_27 AC 14 ms
7,168 KB
testcase_28 AC 15 ms
7,040 KB
testcase_29 AC 21 ms
7,040 KB
testcase_30 AC 76 ms
7,112 KB
testcase_31 AC 115 ms
7,040 KB
testcase_32 AC 115 ms
7,168 KB
testcase_33 AC 48 ms
7,040 KB
testcase_34 AC 89 ms
7,148 KB
testcase_35 AC 78 ms
7,160 KB
testcase_36 AC 76 ms
6,952 KB
testcase_37 AC 76 ms
7,040 KB
testcase_38 AC 85 ms
7,168 KB
testcase_39 AC 65 ms
7,152 KB
testcase_40 AC 63 ms
7,124 KB
testcase_41 AC 62 ms
7,140 KB
testcase_42 AC 12 ms
7,116 KB
testcase_43 AC 12 ms
7,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <atcoder/string>
#include <atcoder/segtree>
using namespace std;
using i32 = int32_t;
using u32 = uint32_t;
using i64 = int64_t;
using u64 = uint64_t;
#define rep(i,n) for(int i=0; i<(n); i++)


int main(){
  int Z = 1000000;
  vector<int> sieve(Z+1,0);
  for(i64 p=2; p<=Z; p++) if(sieve[p] == 0){
    for(i64 i=0; i*p<=Z; i++) sieve[i*p] = sieve[i] + 1;
  }
  
  int N; cin >> N;
  i64 ans = 0;
  rep(i,N){
    int a; cin >> a;
    ans ^= sieve[a];
  }
  if(ans == 0) cout << "black" << endl;
  else cout << "white" << endl;
  return 0;
}

struct ios_do_not_sync{
  ios_do_not_sync(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
  }
} ios_do_not_sync_instance;




0