結果

問題 No.396 クラス替え
ユーザー horiesiniti
提出日時 2016-07-21 03:59:38
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 321 bytes
コンパイル時間 474 ms
コンパイル使用メモリ 53,620 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-17 11:10:07
合計ジャッジ時間 1,170 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:19:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   19 |         scanf("%d %d %d %d",&n,&m,&x,&y);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <iostream>
#include <stdio.h>

using namespace std;

int f(int m,int x){
	int a1=(x-1)%(m);
	int a2=(x-1)/m;
	if(a2%2==0){
		return a1+1;
	}else{
		return m-a1;
	}
}

int main() {
	// your code goes here
	int n,m,x,y;
	scanf("%d %d %d %d",&n,&m,&x,&y);
	printf("%s\n",f(m,x)==f(m,y)?"YES":"NO");
	
	
	return 0;
}
0