結果
問題 | No.1665 quotient replace |
ユーザー | shiroha_F14 |
提出日時 | 2021-08-25 14:23:48 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 518 bytes |
コンパイル時間 | 1,945 ms |
コンパイル使用メモリ | 169,228 KB |
実行使用メモリ | 11,264 KB |
最終ジャッジ日時 | 2024-05-09 00:49:24 |
合計ジャッジ時間 | 16,413 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | AC | 5 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | AC | 32 ms
5,376 KB |
testcase_07 | AC | 7 ms
5,376 KB |
testcase_08 | AC | 19 ms
5,376 KB |
testcase_09 | AC | 118 ms
5,376 KB |
testcase_10 | AC | 1,294 ms
6,016 KB |
testcase_11 | AC | 2,897 ms
9,088 KB |
testcase_12 | AC | 318 ms
5,376 KB |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 126 ms
5,376 KB |
testcase_29 | WA | - |
testcase_30 | AC | 1,891 ms
7,168 KB |
testcase_31 | AC | 2,882 ms
9,344 KB |
testcase_32 | TLE | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | AC | 1,982 ms
7,296 KB |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | AC | 2 ms
5,376 KB |
testcase_43 | AC | 2 ms
5,376 KB |
ソースコード
#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; }