結果
問題 | No.870 無敵囲い |
ユーザー | 37zigen |
提出日時 | 2019-08-30 22:39:31 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 546 bytes |
コンパイル時間 | 504 ms |
コンパイル使用メモリ | 63,988 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-29 06:20:50 |
合計ジャッジ時間 | 1,143 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 1 ms
5,376 KB |
testcase_20 | WA | - |
ソースコード
#include <iostream> int a[100][100]; int main() { int N; std::cin >> N; for (int i = 1; i <= 9; ++i) { for (int j = 1; j <= 9; ++j) { a[i][j] = 0; } } a[2][8] = 1; a[3][9] = 2; a[7][9] = 3; for (int i = 0; i < N; ++i) { int x0, y0, x1, y1; std::cin >> x0 >> y0 >> x1 >> y1; if (a[x0][y0] == 0) continue; a[x1][y1] = a[x0][y0]; a[x0][y0] = 0; } if ((a[5][8] = 1) && (a[4][8] == 2) && (a[6][8] == 3)) { std::cout << "YES" << std::endl; } else { std::cout << "NO" << std::endl; } }