結果

問題 No.396 クラス替え
ユーザー シャロル
提出日時 2016-07-15 23:11:05
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 602 bytes
コンパイル時間 1,284 ms
コンパイル使用メモリ 157,540 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-17 11:07:01
合計ジャッジ時間 2,026 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define FOR(i,a,b) for(int i = (a); i < (b); ++i)
#define REP(i,n) for(int i = 0; i < (n); ++i)
using namespace std;
typedef long long ll;
const int INF = 1e9;
const double PI = acos(-1.0);

int func(int N, int M, int X) {
	int x = X % M;
	int y = X / M;
	if(x == 0) {
		if(y % 2) return M;
		else return 1;
	} else {
		if(y % 2) return M - x + 1;
		else return x;
	}
}

int main(void) {
	cin.tie(0);
	ios::sync_with_stdio(false);
	
	int N, M;
	int X, Y;
	cin >> N >> M;
	cin >> X >> Y;
	
	if(func(N, M, X) == func(N, M, Y)) cout << "YES";
	else cout << "NO";
		
	return 0;
}

0