結果
問題 | No.1665 quotient replace |
ユーザー | hayaten |
提出日時 | 2021-09-03 22:02:14 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 315 ms / 3,000 ms |
コード長 | 2,908 bytes |
コンパイル時間 | 6,239 ms |
コンパイル使用メモリ | 305,540 KB |
実行使用メモリ | 11,540 KB |
最終ジャッジ日時 | 2024-12-15 13:20:43 |
合計ジャッジ時間 | 12,050 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 10 ms
7,644 KB |
testcase_01 | AC | 10 ms
7,696 KB |
testcase_02 | AC | 9 ms
7,644 KB |
testcase_03 | AC | 10 ms
7,684 KB |
testcase_04 | AC | 10 ms
7,700 KB |
testcase_05 | AC | 9 ms
7,636 KB |
testcase_06 | AC | 11 ms
7,588 KB |
testcase_07 | AC | 11 ms
7,700 KB |
testcase_08 | AC | 10 ms
7,716 KB |
testcase_09 | AC | 19 ms
7,628 KB |
testcase_10 | AC | 107 ms
8,872 KB |
testcase_11 | AC | 229 ms
10,532 KB |
testcase_12 | AC | 32 ms
7,848 KB |
testcase_13 | AC | 306 ms
11,316 KB |
testcase_14 | AC | 299 ms
11,464 KB |
testcase_15 | AC | 308 ms
11,428 KB |
testcase_16 | AC | 315 ms
11,540 KB |
testcase_17 | AC | 305 ms
11,432 KB |
testcase_18 | AC | 10 ms
7,716 KB |
testcase_19 | AC | 10 ms
7,788 KB |
testcase_20 | AC | 10 ms
7,680 KB |
testcase_21 | AC | 10 ms
7,628 KB |
testcase_22 | AC | 9 ms
7,596 KB |
testcase_23 | AC | 9 ms
7,700 KB |
testcase_24 | AC | 9 ms
7,648 KB |
testcase_25 | AC | 10 ms
7,616 KB |
testcase_26 | AC | 10 ms
7,624 KB |
testcase_27 | AC | 10 ms
7,792 KB |
testcase_28 | AC | 15 ms
7,648 KB |
testcase_29 | AC | 19 ms
7,716 KB |
testcase_30 | AC | 84 ms
9,508 KB |
testcase_31 | AC | 127 ms
10,660 KB |
testcase_32 | AC | 224 ms
10,352 KB |
testcase_33 | AC | 89 ms
8,612 KB |
testcase_34 | AC | 188 ms
9,892 KB |
testcase_35 | AC | 165 ms
9,632 KB |
testcase_36 | AC | 194 ms
9,768 KB |
testcase_37 | AC | 181 ms
9,504 KB |
testcase_38 | AC | 191 ms
10,016 KB |
testcase_39 | AC | 136 ms
9,256 KB |
testcase_40 | AC | 138 ms
9,256 KB |
testcase_41 | AC | 138 ms
9,252 KB |
testcase_42 | AC | 9 ms
7,724 KB |
testcase_43 | AC | 10 ms
7,792 KB |
ソースコード
#pragma region Macros // #pragma GCC target("avx2") #pragma GCC optimize("O3") #include <bits/stdc++.h> #include <atcoder/all> #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> using namespace std; using namespace __gnu_pbds; template <typename T> using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>; struct __INIT{__INIT(){cin.tie(0);ios::sync_with_stdio(false);cout<<fixed<<setprecision(15);}} __init; #define rep(i, n) for (long long i = 0; i < (n); i++) #define rrep(i, n) for (long long i = (n - 1); i >= 0; i--) #define ALL(v) v.begin(), v.end() #define endl "\n" #define fi first #define se second #define popcount(bit) __builtin_popcount(bit) #define popcountll(bit) __builtin_popcountll(bit) #define pb push_back #define eb emplace_back using namespace atcoder; using P = pair<int, int>; using PL = pair<long long, long long>; using Graph = vector<vector<int>>; typedef long long ll; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } const int dx[4] = {1, 0, -1, 0}; const int dy[4] = {0, 1, 0, -1}; const int fx[8] = {0, 1, 1, 1, 0, -1, -1, -1}; const int fy[8] = {1, 1, 0, -1, -1, -1, 0, 1}; template <typename T> const auto INF = numeric_limits<T>::max()/2; struct Sieve_prime{ vector<int> f, primes; int n; Sieve_prime(int n = 1): n(n), f(n +1){ f[0] = f[1] = -1; for (ll i = 2; i <= n; i++){ if(f[i])continue; primes.emplace_back(i); f[i] = i; for (ll j = i * i; j <= n; j += i){ //この条件をつけると最小素因数が記録される //つけないと最大素因数が記録される。 if(!f[j]) f[j] = i; } } } bool isPrime(int x) { return f[x] == x; } vector<int> factorlist(int x){ vector<int> res; while (x != 1){ res.emplace_back(f[x]); x /= f[x]; } return res; } vector<P> factor(int x) { vector<int> fl = factorlist(x); if (fl.size() == 0) return {}; vector<P> res(1, P(fl[0], 0)); for (int p : fl) { if (res.back().first == p) { res.back().second++; } else { res.emplace_back(p, 1); } } return res; } vector<int> divisors(int x){ assert(x > 0); vector<int> res = {1}; for(auto [p, e] : factor(x)){ int n = res.size() * e; for(int i=0; i<n; ++i){ res.push_back(res[i] * p); } } sort(ALL(res)); return res; } }; Sieve_prime Sieve(1e6 + 1); int main() { int n; cin >> n; int x = 0; vector<int> A(n); rep(i, n) cin >> A[i]; rep(i, n){ int c = 0; auto d = Sieve.factor(A[i]); for(auto [a, b] : d){ c += b; } x ^= c; } if(x){ cout << "white" << endl; }else{ cout << "black" << endl; } }