結果
問題 | No.1257 変わった平均値 |
ユーザー | was_koru |
提出日時 | 2020-10-16 23:28:46 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,398 bytes |
コンパイル時間 | 945 ms |
コンパイル使用メモリ | 99,812 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-21 00:04:54 |
合計ジャッジ時間 | 1,437 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 1 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | WA | - |
testcase_24 | AC | 1 ms
5,376 KB |
ソースコード
#include <iostream> #include <iomanip> #include <algorithm> #include <vector> #include <set> #include <map> #include <math.h> #include <string> #include <numeric> #include <queue> #include <cstdio> #include <cstring> #define ll long long #define rep(i,n) for(ll i=0;i<n;++i) #define rep1(i,n) for(ll i=1;i<n;++i) #define mrep(i,n) for(ll i=n;i>=0;--i) #define all(a) (a).begin(),(a).end() #define vl vector<ll> #define vvl vector<vector<ll> > #define vb vector<bool> #define vvb vector<vector<bool> > #define pl pair<ll,ll> #define inf 1001001001001001000 #define mod 1000000007 //#define mod 998244353 #define pi 3.1415926535 using namespace std; struct __INIT{ __INIT(){ cin.tie(0); ios::sync_with_stdio(false); cout<<fixed<<setprecision(15); } }__init; ll mpow(ll a,ll b){ if(b == 0) return 1; if(b == 1) return a%mod; if(b%2 == 0) return mpow((a*a)%mod,b/2)%mod; else return (a%mod)*mpow((a*a)%mod,(b-1)/2)%mod; } int main(){ vl abc(3); vl xyz(3); cin>>abc[0]>>abc[1]>>abc[2]; cin>>xyz[0]>>xyz[1]>>xyz[2]; if(abc[0] == xyz[0] && abc[1] == xyz[1] && abc[2] == xyz[2]){ cout<<"Yes"<<endl; return 0; } sort(all(abc)); sort(all(xyz)); if(abc[0] == xyz[0] && abc[1] == xyz[1] && abc[2] == xyz[2]){ cout<<"Yes"<<endl; cout<<2<<endl; } else{ cout<<"No"<<endl; } }