結果
問題 | No.396 クラス替え |
ユーザー | sawfish |
提出日時 | 2022-10-24 09:17:39 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 327 bytes |
コンパイル時間 | 539 ms |
コンパイル使用メモリ | 63,840 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-02 14:11:58 |
合計ジャッジ時間 | 1,441 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 20 |
ソースコード
#include <iostream> using namespace std; using LL = long long; using ULL = unsigned long long; int main() { int N, M, X, Y; cin >> N >> M >> X >> Y; int x, y; x = --X % M; y = --Y % M; if ((X / M) & 1) x = M - 1 - x; if ((Y / M) & 1) y = M - 1 - y; cout << (x == y ? "YES" : "NO") << endl; }