結果
問題 | No.1366 交換門松列・梅 |
ユーザー | weaken |
提出日時 | 2021-05-18 05:52:30 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 904 bytes |
コンパイル時間 | 2,395 ms |
コンパイル使用メモリ | 204,676 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-07 22:16:09 |
合計ジャッジ時間 | 2,986 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | WA | - |
ソースコード
#include <bits/stdc++.h> #define FastIO (cin.tie(0), cout.tie(0), ios::sync_with_stdio(false)) #define rep(i, n) for (int i = 0; i < (int)(n); i++) using namespace std; bool IsKadomatsu(vector<int> a) { if (a[0] == a[1] || a[1] == a[2] || a[0] == a[2]) return false; int mmax = max(a[0], max(a[1], a[2])); int mmin = min(a[0], min(a[1], a[2])); return mmax == a[1] || mmin == a[1]; } void Trace(vector<int> ai) { for (const auto a : ai) cout << a; cout << '\n'; } void solve() { vector<int> ai(3), bi(3); for (auto &a : ai) cin >> a; for (auto &b : bi) cin >> b; for (int i = 0; i < 3; i++) { vector<int> A = ai, B = bi; for (int j = 0; j < 3; j++) { swap(A[i], B[j]); if (IsKadomatsu(A) && IsKadomatsu(B)) { cout << "Yes" << '\n'; return; } } } cout << "No" << '\n'; return; } int main() { FastIO; solve(); return 0; }