結果

問題 No.396 クラス替え
ユーザー かにかに
提出日時 2016-10-11 20:57:36
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,391 bytes
コンパイル時間 1,360 ms
コンパイル使用メモリ 163,612 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-01 19:32:42
合計ジャッジ時間 2,208 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
#define _CRT_SECURE_NO_WARNINGS
#define rep(i,n) for(int i = 0;i < n;i++)
#define REP(i,n,k) for(int i = n;i < k;i++)
#define P(p) cout << (p) << endl;
#define sP(p) cout << setprecision(15) << fixed << p << endl;
#define Pi pair<int,int>
#define IINF 1e9
#define LINF 1e18
#define vi vector<int>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
int dx[] = { 1, 0,-1,0 };
int dy[] = { 0, 1,0,-1 };

bool isPrime(int n) {
	if (n <= 1)return false;
	if (n == 2)return true;
	if (n % 2 == 0)return false;
	for (int i = 3; i*i <= n; i += 2) {
		if (n%i == 0)return false;
	}
	return true;
}

void bubbleSort(vector<int> v) {
	vector<pair<int, int> > ans;
	for (int i = 0; i < v.size() - 1; i++) {
		for (int j = v.size()-1; j > i; j--) {
			if (v[j]>v[j - 1]) {
				int t = v[j];
				v[j] = v[j - 1];
				v[j - 1] = t;
				ans.push_back(make_pair(j-1,j));
			}
		}
	}
	P(ans.size());
	rep(i, ans.size()) {
		cout << ans[i].first << " " << ans[i].second << endl;
	}
}

void solve() {
	int n, m, x, y;
	cin >> n >> m >> x >> y;
	x = x - (x / (m*2))*(m*2);
	y = y - (y / (m*2))*(m*2);
	cout << x << " " << y << endl;
	if (x == 0)x = 1;
	if (y == 0)y = 1;
	if (x > m) {
		x = x - (x / m)*m;
		x = m - x;
	}
	if (y > m) {
		y = y - (y / m)*m;
		y = m - y;
	}
	if (x == y) {
		P("YES");
	}
	else {
		P("NO");
	}
}

int main() {
	solve();
	return 0;
}
0