結果
問題 | No.1556 Power Equality |
ユーザー | NANDEESH GUPTA |
提出日時 | 2021-06-25 23:29:26 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 469 bytes |
コンパイル時間 | 1,541 ms |
コンパイル使用メモリ | 165,124 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-25 08:54:30 |
合計ジャッジ時間 | 2,364 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; //#pragma GCC diagnostic ignored "-W" #define f(i,a,b) for(int i=(a); i<int(b); ++i) #define fr(i,a,b) for(int i=(a); i>int(b); --i) typedef long long int lli; typedef vector<lli> vlli; typedef pair<lli,lli> plli; typedef vector<plli> vplli; int main(){ ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL); lli a,b; cin>>a>>b; if(a==b){ cout<<"Yes\n"; }else{ cout<<"No\n"; } return 0; }