結果

問題 No.384 マス埋めゲーム2
ユーザー TatsuDXTatsuDX
提出日時 2016-10-16 20:45:23
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 301 bytes
コンパイル時間 6,761 ms
コンパイル使用メモリ 74,932 KB
実行使用メモリ 56,512 KB
最終ジャッジ日時 2024-11-22 12:10:30
合計ジャッジ時間 7,906 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,108 KB
testcase_01 RE -
testcase_02 AC 134 ms
41,256 KB
testcase_03 AC 131 ms
41,088 KB
testcase_04 AC 130 ms
41,012 KB
testcase_05 AC 133 ms
41,216 KB
testcase_06 AC 136 ms
41,260 KB
testcase_07 AC 133 ms
41,568 KB
testcase_08 AC 133 ms
40,960 KB
testcase_09 AC 135 ms
41,540 KB
testcase_10 AC 132 ms
41,360 KB
testcase_11 AC 132 ms
40,988 KB
testcase_12 AC 121 ms
40,064 KB
testcase_13 AC 136 ms
41,116 KB
testcase_14 AC 134 ms
41,220 KB
testcase_15 AC 133 ms
41,208 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 135 ms
41,052 KB
testcase_19 AC 133 ms
41,160 KB
testcase_20 AC 134 ms
41,272 KB
testcase_21 AC 134 ms
41,428 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt()+sc.nextInt()-1, a = sc.nextInt(), b = sc.nextInt();
		if((n-b)%a == 0){
			System.out.println("YES");
		} else {
			System.out.println("NO");
		}
	}
}
0