結果
問題 |
No.1412 Super Ryuo
|
ユーザー |
|
提出日時 | 2021-02-28 21:30:27 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 283 bytes |
コンパイル時間 | 1,376 ms |
コンパイル使用メモリ | 166,300 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-10-02 22:08:00 |
合計ジャッジ時間 | 1,951 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 13 WA * 1 |
ソースコード
#include <bits/stdc++.h> #define rep(i, n) for (int i = 0; i < (int)(n); i++) using namespace std; typedef long long ll; int main() { int A, B, C, D; cin >> A >> B >> C >> D; if (A == C || B == D || abs(A - C) + abs(B - D) <= 3) cout << "1\n"; else cout << "2\n"; }