結果
| 問題 |
No.1556 Power Equality
|
| コンテスト | |
| ユーザー |
Uniq0rn
|
| 提出日時 | 2021-06-25 21:34:38 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 306 bytes |
| コンパイル時間 | 1,489 ms |
| コンパイル使用メモリ | 164,540 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-25 08:14:57 |
| 合計ジャッジ時間 | 1,913 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 9 |
ソースコード
#include <bits/stdc++.h>
#include <math.h>
using namespace std;
#define ll long long int
void solve(long long int n)
{
}
int main()
{
ll a,b;
cin >> a >> b;
ll A = pow(a,b), B=pow(b,a);
if(a == b){
cout << "YES";
}
else cout << "NO";
return 0;
}
Uniq0rn