結果

問題 No.396 クラス替え
ユーザー itezpaceitezpace
提出日時 2016-07-15 22:52:37
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 564 bytes
コンパイル時間 1,277 ms
コンパイル使用メモリ 157,816 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-17 11:04:20
合計ジャッジ時間 2,003 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

int main(){
  int n,m,x,y;
  cin>>n>>m;
  cin>>x>>y;
  int a,b,c,d;
  a=(x-1)/m;
  b=x%m;
  c=(y-1)/m;
  d=y%m;
  int e,f;
  if(a%2==1){
    if(b==0){
      e=m;
    } else {
      e=b;
    }
  } else {
    if(b==0){
      e=1;
    } else {
      e=m-b+1;
    }
  }
  if(c%2==1){
    if(d==0){
      f=m;
    } else {
      f=d;
    }
  } else {
    if(d==0){
      f=1;
    } else {
      f=m-d+1;
    }
  }
  if(e==f){
    cout<<"YES"<<endl;
  } else {
    cout<<"NO"<<endl;
  }
  return 0;
}
0