結果
問題 |
No.1257 変わった平均値
|
ユーザー |
|
提出日時 | 2020-10-16 21:30:57 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 264 bytes |
コンパイル時間 | 1,726 ms |
コンパイル使用メモリ | 171,668 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-20 21:11:09 |
合計ジャッジ時間 | 2,581 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 20 WA * 5 |
ソースコード
#include<bits/stdc++.h> #define int long long using namespace std; signed main(){ vector<int> A(3),B(3); for(int &i:A)cin>>i; for(int &i:B)cin>>i; sort(A.begin(),A.end()); sort(B.begin(),B.end()); if(A==B)puts("Yes"); else puts("No"); }