結果
問題 |
No.1412 Super Ryuo
|
ユーザー |
|
提出日時 | 2021-02-28 21:21:43 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 161 bytes |
コンパイル時間 | 519 ms |
コンパイル使用メモリ | 65,604 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-02 22:01:17 |
合計ジャッジ時間 | 1,148 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 9 WA * 5 |
コンパイルメッセージ
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-B)+abs(C-D)<=3?1:2)<<endl; }