結果
問題 | No.1366 交換門松列・梅 |
ユーザー | private-dev-acct |
提出日時 | 2021-05-05 13:14:36 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,801 bytes |
コンパイル時間 | 2,039 ms |
コンパイル使用メモリ | 203,408 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-13 04:56:43 |
合計ジャッジ時間 | 2,829 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,944 KB |
ソースコード
#include "bits/stdc++.h" using namespace std; #define _CRT_SECURE_NO_WARINGS #define INIT ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0) #define ALL(obj) (obj).begin(),(obj).end() #define RALL(obj) (obj).rbegin(),(obj).rend() #define SORT(obj) sort(ALL(obj)) #define RSORT(obj) sort(RALL(obj)) #define REP(i,n) for(int i = 0; i < (n); ++i) #define COUT_ALL(x) for(auto i=x.begin();i!=--x.end();i++)cout<<*i<<" ";cout<<*--x.end()<<endl; using ll = long long; using P = pair<int, int>; using VI = vector<int>; using VP = vector<P>; const int INF = 1e9; const int MOD = 1e9 + 7; const ll LINF = 1e18; const double PI = 3.14159265358979323846; template<class T>bool chmax(T& a, const T& b) { if (a < b) { a = b; return 1; } return 0; } template<class T>bool chmin(T& a, const T& b) { if (b < a) { a = b; return 1; } return 0; } template<typename T> istream& operator >> (istream& is, vector<T>& vec) {for (T& x : vec) is >> x;return is;} template<typename T> ostream& operator << (ostream& os, vector<T>& vec) { for (int i = 0; i < vec.size(); i++) { os << vec[i] << (i + 1 == vec.size() ? "" : " "); } return os;} signed main() { INIT; // 必須 const int L = 3; VI a(L), b(L); cin >> a >> b; for (int i = 0; i < L; i++) { for (int j = 0; j < L; j++) { swap(a[i], b[j]); int x, y, z; int u, v, w; bool flag = true; x = a[0], y = a[1], z = a[2]; u = b[0], v = b[1], w = b[2]; if ((x != y and y != z) and (u != v and v != w)) { int max_a = max({ x,y,z }), min_a = min({ x,y,z }); int max_b = max({ u,v,w }), min_b = min({ u,v,w }); flag = (max_a == y or min_a == y) and (max_b == v or min_b == v); if (flag) { cout << "Yes" << "\n"; return 0; } } swap(a[i], b[j]); } } cout << "No" << "\n"; }