結果

問題 No.384 マス埋めゲーム2
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-06 23:55:46
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 407 bytes
コンパイル時間 3,091 ms
コンパイル使用メモリ 80,288 KB
実行使用メモリ 41,328 KB
最終ジャッジ日時 2024-05-06 01:26:12
合計ジャッジ時間 5,610 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,100 KB
testcase_01 RE -
testcase_02 AC 94 ms
39,388 KB
testcase_03 AC 100 ms
40,160 KB
testcase_04 AC 110 ms
40,676 KB
testcase_05 AC 105 ms
40,580 KB
testcase_06 AC 107 ms
41,116 KB
testcase_07 AC 111 ms
41,236 KB
testcase_08 AC 98 ms
40,296 KB
testcase_09 AC 109 ms
41,100 KB
testcase_10 AC 109 ms
40,704 KB
testcase_11 AC 113 ms
41,028 KB
testcase_12 AC 116 ms
41,168 KB
testcase_13 AC 117 ms
40,988 KB
testcase_14 AC 109 ms
40,956 KB
testcase_15 AC 99 ms
40,028 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 107 ms
40,988 KB
testcase_19 AC 111 ms
41,004 KB
testcase_20 AC 118 ms
41,252 KB
testcase_21 AC 106 ms
39,852 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