結果
問題 | No.1257 変わった平均値 |
ユーザー | 夜 |
提出日時 | 2020-10-16 21:49:48 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 569 bytes |
コンパイル時間 | 874 ms |
コンパイル使用メモリ | 94,416 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-20 21:26:56 |
合計ジャッジ時間 | 1,635 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 25 |
ソースコード
#include <iostream> #include <string> #include <algorithm> #include <vector> #include <iomanip> #include <cmath> #include <stdio.h> #include <queue> #include <deque> #include <cstdio> #include <set> #include <map> #include <bitset> #include <stack> #include <cctype> using namespace std; int main() { int a[3], b[3]; cin >> a[0] >> a[1] >> a[2] >> b[0] >> b[1] >> b[2]; sort(a, a + 3); sort(b, b + 3); if (a[0] == b[0] && a[1] == b[1] && a[2] == b[2]) { cout << "Yes" << endl; cout << "2" << endl; return 0; } else { cout << "No" << endl; } return 0; }