結果

問題 No.384 マス埋めゲーム2
ユーザー GrenacheGrenache
提出日時 2016-07-01 23:33:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 1,000 ms
コード長 582 bytes
コンパイル時間 3,425 ms
コンパイル使用メモリ 78,496 KB
実行使用メモリ 54,312 KB
最終ジャッジ日時 2024-10-12 01:20:56
合計ジャッジ時間 7,508 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,228 KB
testcase_01 AC 131 ms
53,616 KB
testcase_02 AC 131 ms
53,896 KB
testcase_03 AC 130 ms
54,180 KB
testcase_04 AC 133 ms
53,972 KB
testcase_05 AC 115 ms
52,912 KB
testcase_06 AC 132 ms
54,312 KB
testcase_07 AC 130 ms
53,960 KB
testcase_08 AC 131 ms
54,164 KB
testcase_09 AC 130 ms
53,816 KB
testcase_10 AC 129 ms
53,776 KB
testcase_11 AC 131 ms
54,216 KB
testcase_12 AC 131 ms
53,664 KB
testcase_13 AC 133 ms
54,020 KB
testcase_14 AC 132 ms
54,200 KB
testcase_15 AC 136 ms
54,000 KB
testcase_16 AC 134 ms
54,048 KB
testcase_17 AC 131 ms
53,892 KB
testcase_18 AC 131 ms
53,948 KB
testcase_19 AC 131 ms
53,820 KB
testcase_20 AC 131 ms
53,916 KB
testcase_21 AC 133 ms
54,092 KB
testcase_22 AC 128 ms
53,704 KB
testcase_23 AC 132 ms
53,940 KB
testcase_24 AC 133 ms
53,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder384 {

    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	Printer pr = new Printer(System.out);

    	int h = sc.nextInt();
    	int w = sc.nextInt();
    	long n = sc.nextLong();
    	long k = sc.nextLong();

    	if ((h - 1 + w - 1) % n == k - 1) {
    		pr.println("YES");
    	} else {
    		pr.println("NO");
    	}

        pr.close();
        sc.close();
    }

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0