結果
問題 | No.396 クラス替え |
ユーザー | T1610 |
提出日時 | 2019-04-01 01:51:07 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 810 bytes |
コンパイル時間 | 1,579 ms |
コンパイル使用メモリ | 167,792 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-23 23:17:23 |
合計ジャッジ時間 | 2,329 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 20 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) REP(i,0,n) #define REP(i,s,e) for(int i=(s); i<(int)(e); i++) #define repr(i, n) REPR(i, n, 0) #define REPR(i, s, e) for(int i=(int)(s-1); i>=(int)(e); i--) #define pb push_back #define all(r) r.begin(),r.end() #define rall(r) r.rbegin(),r.rend() #define fi first #define se second typedef long long ll; typedef vector<int> vi; typedef vector<ll> vl; typedef pair<int, int> pii; typedef pair<ll, ll> pll; const int INF = 1e9; const ll MOD = 1e9 + 7; double EPS = 1e-8; int main(){ int N, M, X, Y; cin >> N >> M >> X >> Y; --X; --Y; X %= (2*M); Y %= (2*M); if(X >= M) X = 2*M - X - 1; if(Y >= M) Y = 2*M - Y - 1; string yes = "YES", no = "NO"; cout << (X == Y ? yes : no) << endl; return 0; }