結果

問題 No.384 マス埋めゲーム2
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-06 23:55:46
言語 Java
(openjdk 23)
結果
RE  
実行時間 -
コード長 407 bytes
コンパイル時間 3,228 ms
コンパイル使用メモリ 73,712 KB
実行使用メモリ 41,436 KB
最終ジャッジ日時 2024-11-28 03:19:13
合計ジャッジ時間 6,292 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,020 KB
testcase_01 RE -
testcase_02 AC 131 ms
41,200 KB
testcase_03 AC 117 ms
40,072 KB
testcase_04 AC 132 ms
41,160 KB
testcase_05 AC 133 ms
41,304 KB
testcase_06 AC 122 ms
40,032 KB
testcase_07 AC 118 ms
40,072 KB
testcase_08 AC 133 ms
41,068 KB
testcase_09 AC 120 ms
40,420 KB
testcase_10 AC 119 ms
40,044 KB
testcase_11 AC 121 ms
40,248 KB
testcase_12 AC 132 ms
41,148 KB
testcase_13 AC 137 ms
41,260 KB
testcase_14 AC 108 ms
41,324 KB
testcase_15 AC 101 ms
40,632 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 110 ms
41,264 KB
testcase_19 AC 109 ms
40,984 KB
testcase_20 AC 110 ms
40,232 KB
testcase_21 AC 113 ms
40,936 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int H = sc.nextInt();
        int W = sc.nextInt();
        int N = sc.nextInt();
        int K = sc.nextInt();
        int L = (H+W-2)%N+1;
        if(K==L){
            System.out.println("YES");
        }else{
            System.out.println("NO");
        }
    }
}
0