結果

問題 No.1412 Super Ryuo
ユーザー forest3
提出日時 2021-08-21 17:23:39
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 223 bytes
コンパイル時間 1,529 ms
コンパイル使用メモリ 166,748 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-15 08:01:00
合計ジャッジ時間 2,261 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 13 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main()
{
	int A, B, C, D;
	cin >> A >> B >> C >> D;

	int ans = 2;
	if( A == C || B == D ) ans = 1;
	if( abs(A - C) + abs( B - D ) <= 3 ) ans = 1;

	cout << ans << endl;
}
0