結果
問題 |
No.281 門松と魔法(1)
|
ユーザー |
![]() |
提出日時 | 2016-03-15 20:23:05 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 565 bytes |
コンパイル時間 | 448 ms |
コンパイル使用メモリ | 60,000 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-06 19:50:46 |
合計ジャッジ時間 | 2,121 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 36 WA * 19 RE * 2 |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; #define RREP(i,s,e) for (i = s; i >= e; i--) #define rrep(i,n) RREP(i,n,0) #define REP(i,s,e) for (i = s; i < e; i++) #define rep(i,n) REP(i,0,n) #define INF 1e8 typedef long long ll; int main() { int d, h1, h2, h3; cin >> d >> h1 >> h2 >> h3; if (h2 == 0 && (h1 == 0 || h3 == 0)) cout << -1 << endl; else if (h2 < min(h1,h3) || h2 > max(h1,h3)) cout << 0 << endl; else cout << min(abs(h2-h1),abs(h2-h3)) / d + 1 << endl; return 0; }