結果
問題 |
No.1257 変わった平均値
|
ユーザー |
|
提出日時 | 2020-10-16 21:51:14 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 266 bytes |
コンパイル時間 | 1,848 ms |
コンパイル使用メモリ | 171,520 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-20 21:29:50 |
合計ジャッジ時間 | 2,155 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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\2"); else puts("No"); }