結果

問題 No.396 クラス替え
ユーザー 👑 horiesinitihoriesiniti
提出日時 2016-07-21 03:59:38
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 321 bytes
コンパイル時間 445 ms
コンパイル使用メモリ 53,464 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-28 17:18:03
合計ジャッジ時間 1,175 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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