結果
問題 | No.1412 Super Ryuo |
ユーザー |
|
提出日時 | 2021-02-28 21:22:03 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 161 bytes |
コンパイル時間 | 626 ms |
コンパイル使用メモリ | 65,520 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-02 22:01:39 |
合計ジャッジ時間 | 1,166 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 14 |
コンパイルメッセージ
main.cpp:5:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 5 | main() | ^~~~
ソースコード
#include<iostream>#include<algorithm>using namespace std;int A,B,C,D;main(){cin>>A>>B>>C>>D;cout<<(A==C||B==D||(long)abs(A-C)+abs(B-D)<=3?1:2)<<endl;}