結果
問題 | No.1665 quotient replace |
ユーザー | kabipoyo |
提出日時 | 2022-01-04 02:40:24 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,778 bytes |
コンパイル時間 | 4,544 ms |
コンパイル使用メモリ | 265,760 KB |
実行使用メモリ | 26,912 KB |
最終ジャッジ日時 | 2024-10-13 16:00:24 |
合計ジャッジ時間 | 14,531 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 12 ms
11,232 KB |
testcase_01 | AC | 12 ms
11,120 KB |
testcase_02 | AC | 12 ms
11,276 KB |
testcase_03 | AC | 13 ms
11,348 KB |
testcase_04 | AC | 12 ms
11,336 KB |
testcase_05 | AC | 11 ms
11,332 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 14 ms
11,440 KB |
testcase_09 | AC | 27 ms
11,928 KB |
testcase_10 | AC | 193 ms
16,564 KB |
testcase_11 | AC | 427 ms
23,264 KB |
testcase_12 | AC | 58 ms
12,612 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 560 ms
26,912 KB |
testcase_18 | AC | 13 ms
11,444 KB |
testcase_19 | AC | 13 ms
11,308 KB |
testcase_20 | AC | 13 ms
11,324 KB |
testcase_21 | AC | 12 ms
11,256 KB |
testcase_22 | AC | 13 ms
11,104 KB |
testcase_23 | AC | 13 ms
11,328 KB |
testcase_24 | AC | 13 ms
11,232 KB |
testcase_25 | AC | 12 ms
11,264 KB |
testcase_26 | AC | 14 ms
11,144 KB |
testcase_27 | AC | 15 ms
11,520 KB |
testcase_28 | AC | 26 ms
11,632 KB |
testcase_29 | AC | 38 ms
12,240 KB |
testcase_30 | AC | 204 ms
19,016 KB |
testcase_31 | AC | 308 ms
23,220 KB |
testcase_32 | WA | - |
testcase_33 | AC | 164 ms
15,416 KB |
testcase_34 | WA | - |
testcase_35 | AC | 305 ms
19,472 KB |
testcase_36 | WA | - |
testcase_37 | AC | 300 ms
19,060 KB |
testcase_38 | AC | 342 ms
20,672 KB |
testcase_39 | AC | 249 ms
17,712 KB |
testcase_40 | AC | 247 ms
17,824 KB |
testcase_41 | AC | 244 ms
17,800 KB |
testcase_42 | WA | - |
testcase_43 | WA | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; typedef int64_t lint; #define rep(i, n) for(int i=0; i<n; i++) #define repx(i, l, n) for(int i=l; i<n; i++) #define all(v) v.begin(), v.end() #define show(x) cout << #x << ": " << x << endl; #define list(x) cout << #x << ": " << x << " "; #define pb push_back using vi = vector<lint>; using vvi = vector<vector<lint>>; template<class T> inline void vin(vector<T>& v) { rep(i, v.size()) cin >> v.at(i); } 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; } template<class T> inline void drop(T x) { cout << x << endl; exit(0); } template<class T> void vout(vector<T> v) { rep(i, v.size()) { cout << v.at(i) << ' '; } cout << endl; } constexpr lint LINF = LLONG_MAX/2; struct Sieve { int n; vector<lint> p; Sieve(int n=1):n(n), p(n+1) { p.at(0) = -1, p.at(1) = -1; for(lint i=2; i<=n; i++) { if(!p.at(i)) { p.at(i) = i; for(lint j=i*i; j<=n; j+=i) { if (!p.at(j)) p.at(j) = i; } } } } bool isPrime(int x) { return p.at(x) == x;} vector<lint> factorList(int x) { vector<lint> v; while (x != 1) { v.push_back(p.at(x)); x /= p.at(x); } return v; } vector<lint> factor(int x) { vector<lint> v; while (x != 1) { int t = p.at(x); v.push_back(t); while (x % t == 0) x /= t; } return v; } }; int main() { lint N; cin >> N; vi v(N), w(N); vin(v); lint a=0, b=0, c=0, x, y, z; Sieve S(1001001); rep(i, N) { if (v[i] == 1) continue; w[i] = S.factorList(v[i]).size(); } rep(i, N) { a ^= w[i]; } rep(i, N) { if (w[i] == a) drop("white"); } std::cout << "black" << '\n'; }