結果
問題 | No.870 無敵囲い |
ユーザー | face4 |
提出日時 | 2019-08-30 21:24:01 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 666 bytes |
コンパイル時間 | 548 ms |
コンパイル使用メモリ | 65,536 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-29 06:12:24 |
合計ジャッジ時間 | 1,305 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
ソースコード
#include<iostream> using namespace std; int main(){ int n; cin >> n; pair<int,int> p[3], q[3]; p[0] = {2, 8}; q[0] = {5, 8}; p[1] = {3, 9}; q[1] = {3, 9}; p[2] = {7, 9}; q[2] = {7, 9}; while(n-- > 0){ int x, y, tx, ty; cin >> x >> y >> tx >> ty; for(int i = 0; i < 3; i++){ if(p[i].first == x && p[i].second == y){ p[i].first = tx, p[i].second = ty; break; } } } bool valid = true; for(int i = 0; i < 3; i++) valid &= (p[i].first == q[i].first && p[i].second==q[i].second); cout << (valid ? "YES" : "NO") << endl; return 0; }