#include <iostream>
#pragma region 입출력 속도향상
#define FAST_IO() \
{\
ios::sync_with_stdio(false);\
cin.tie(NULL); \
cout.tie(NULL); \
}\
#pragma endregion
using namespace std;
#define x first
#define y second
int main()
{
FAST_IO();
int w, h, p, q, t;
cin >> w >> h >> p >> q >> t;
p += t;
q += t;
p %= (2 * w);
q %= (2 * h);
if (p > w)
p = 2 * w - p;
if (q > h)
q = 2 * h - q;
cout << p << ' ' << q;
return 0;
}
'코딩테스트 > 백준' 카테고리의 다른 글
[골4] 1647 - 도시 분할 계획 (0) | 2023.10.23 |
---|---|
[실2] 2512 - 예산 (0) | 2023.10.20 |
[골4] 1715 - 카드 정렬하기 (0) | 2023.10.20 |
[실3] 16956 - 늑대와 양 (0) | 2023.10.19 |
[골3] 1005 - ACM Craft (0) | 2023.10.19 |