結果
問題 | No.1218 Something Like a Theorem |
ユーザー | SSRS |
提出日時 | 2020-09-04 21:25:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 710 bytes |
コンパイル時間 | 2,071 ms |
コンパイル使用メモリ | 205,676 KB |
実行使用メモリ | 50,304 KB |
最終ジャッジ日時 | 2024-11-26 11:44:49 |
合計ジャッジ時間 | 3,426 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 1 ms
6,820 KB |
testcase_12 | AC | 2 ms
6,816 KB |
testcase_13 | AC | 2 ms
6,816 KB |
testcase_14 | AC | 1 ms
6,816 KB |
testcase_15 | AC | 2 ms
6,820 KB |
testcase_16 | AC | 1 ms
6,820 KB |
testcase_17 | AC | 1 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int n, z; cin >> n >> z; if (n == 1){ if (z == 1){ cout << "No" << endl; } else { cout << "Yes" << endl; } } int c = 1; for (int i = 0; i < n; i++){ c *= z; } set<int> st; int b = 1; while (1){ long long p = 1; bool big = false; for (int i = 0; i < n; i++){ p *= b; if (p > c){ big = true; break; } } if (big){ break; } else { st.insert(p); b++; } } bool ok = false; for (int a : st){ if (st.count(c - a)){ ok = true; } } if (ok){ cout << "Yes" << endl; } else { cout << "No" << endl; } }