結果

問題 No.396 クラス替え
ユーザー fjafjafjafjafjafja
提出日時 2017-09-16 16:49:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 446 bytes
コンパイル時間 3,579 ms
コンパイル使用メモリ 77,524 KB
実行使用メモリ 41,744 KB
最終ジャッジ日時 2024-11-08 01:35:04
合計ジャッジ時間 6,949 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,368 KB
testcase_01 AC 133 ms
41,208 KB
testcase_02 AC 130 ms
41,744 KB
testcase_03 AC 129 ms
41,236 KB
testcase_04 AC 131 ms
41,396 KB
testcase_05 AC 119 ms
41,420 KB
testcase_06 AC 125 ms
40,076 KB
testcase_07 AC 133 ms
41,384 KB
testcase_08 AC 130 ms
41,260 KB
testcase_09 AC 118 ms
40,928 KB
testcase_10 AC 133 ms
41,408 KB
testcase_11 AC 135 ms
41,304 KB
testcase_12 AC 133 ms
41,424 KB
testcase_13 AC 132 ms
41,524 KB
testcase_14 AC 135 ms
41,228 KB
testcase_15 AC 133 ms
41,384 KB
testcase_16 AC 132 ms
41,080 KB
testcase_17 AC 131 ms
40,988 KB
testcase_18 AC 135 ms
41,352 KB
testcase_19 AC 131 ms
41,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N396
{
	public static void main(String[] args)
	{
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt(),m=sc.nextInt();
		int[] x=new int[2];x[0]=sc.nextInt();x[1]=sc.nextInt();
		for(int i=0;i<2;i++)
		{
			x[i]=x[i]%(2*m);if(x[i]==0){x[i]=2*m;}
			if(x[i]<=m){}else{x[i]=x[i]%m;if(x[i]==0){x[i]=m;}x[i]=m-x[i]+1;}
		}
		if(x[0]==x[1]){System.out.println("YES");}else{System.out.println("NO");}
	}

}
0