結果
問題 | No.1556 Power Equality |
ユーザー | ken8aisa |
提出日時 | 2021-06-25 22:35:33 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 502 bytes |
コンパイル時間 | 3,659 ms |
コンパイル使用メモリ | 229,852 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-25 08:39:06 |
合計ジャッジ時間 | 4,253 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | WA | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:17:9: warning: 'A' is used uninitialized [-Wuninitialized] 17 | if(pow(A,B) == pow(B,A)) cout << "Yes"<< endl; | ~~~^~~~~ main.cpp:16:6: note: 'A' was declared here 16 | ll A, B; | ^ main.cpp:17:9: warning: 'B' is used uninitialized [-Wuninitialized] 17 | if(pow(A,B) == pow(B,A)) cout << "Yes"<< endl; | ~~~^~~~~ main.cpp:16:9: note: 'B' was declared here 16 | ll A, B; | ^
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; typedef long long ll; #define rep(i, a, b) for (ll i = a; i < b; i++) #define rrep(i, a, b) for (ll i = a; i >= b; i--) using mint = modint1000000007; void chmin(ll &x, ll y) { x = min(x, y); } void chmax(ll &x, ll y) { x = max(x, y); } int main() { cin.tie(0); ios_base::sync_with_stdio(false); ll A, B; if(pow(A,B) == pow(B,A)) cout << "Yes"<< endl; else cout << "No" << endl; return 0; }