結果
問題 | No.1665 quotient replace |
ユーザー | SSRS |
提出日時 | 2021-09-03 21:27:48 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 673 bytes |
コンパイル時間 | 2,292 ms |
コンパイル使用メモリ | 176,276 KB |
実行使用メモリ | 18,176 KB |
最終ジャッジ日時 | 2024-05-09 01:46:21 |
合計ジャッジ時間 | 12,629 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 86 ms
13,952 KB |
testcase_01 | AC | 88 ms
13,952 KB |
testcase_02 | AC | 89 ms
13,952 KB |
testcase_03 | WA | - |
testcase_04 | AC | 104 ms
14,592 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 102 ms
14,464 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 200 ms
15,360 KB |
testcase_11 | AC | 328 ms
16,896 KB |
testcase_12 | AC | 131 ms
14,592 KB |
testcase_13 | WA | - |
testcase_14 | AC | 402 ms
17,920 KB |
testcase_15 | AC | 409 ms
17,884 KB |
testcase_16 | WA | - |
testcase_17 | AC | 404 ms
17,732 KB |
testcase_18 | AC | 97 ms
13,952 KB |
testcase_19 | AC | 92 ms
13,952 KB |
testcase_20 | AC | 94 ms
13,952 KB |
testcase_21 | AC | 97 ms
13,952 KB |
testcase_22 | AC | 96 ms
13,952 KB |
testcase_23 | WA | - |
testcase_24 | AC | 96 ms
13,952 KB |
testcase_25 | AC | 95 ms
13,952 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 102 ms
14,464 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | AC | 244 ms
15,616 KB |
testcase_40 | WA | - |
testcase_41 | AC | 223 ms
15,616 KB |
testcase_42 | AC | 90 ms
13,952 KB |
testcase_43 | AC | 92 ms
13,824 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int N; cin >> N; vector<int> A(N); for (int i = 0; i < N; i++){ cin >> A[i]; } vector<vector<int>> f(100001); for (int i = 1; i <= 100000; i++){ for (int j = i * 2; j <= 100000; j += i){ f[j].push_back(i); } } vector<int> grundy(100001, 0); for (int i = 2; i <= 100000; i++){ set<int> st; for (int j : f[i]){ st.insert(grundy[j]); } while (st.count(grundy[i]) == 1){ grundy[i]++; } } int X = 0; for (int i = 0; i < N; i++){ X ^= grundy[A[i]]; } if (X > 0){ cout << "white" << endl; } else { cout << "black" << endl; } }