結果

問題 No.1714 Tag on Grid
ユーザー elpheelphe
提出日時 2024-12-06 18:07:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 487 bytes
コンパイル時間 866 ms
コンパイル使用メモリ 78,484 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-06 18:07:47
合計ジャッジ時間 2,141 ms
ジャッジサーバーID
(参考情報)
judge1 / 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 WA -
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 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 2 ms
5,248 KB
testcase_19 WA -
testcase_20 AC 2 ms
5,248 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdint>
#include <cmath>

using namespace std;

int main()
{
	cin.tie(nullptr);
	ios::sync_with_stdio(false);

	int32_t H, W, n_i, n_j, z_i, z_j;
	cin >> H >> W >> n_i >> n_j >> z_i >> z_j;

	if (abs(n_i - z_i) + abs(n_j - z_j) == 1 || abs(n_i - z_i) + abs(n_j - z_j) == 3 && (z_i == 1 && z_j == 1 || z_i == 1 && z_j == W || z_i == H && z_j == 1 || z_i == H && z_j == W) && n_i != z_i && n_j != z_j)
		cout << "Yes\n";
	else
		cout << "No\n";

	return 0;
}
0