結果

問題 No.384 マス埋めゲーム2
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-06 23:57:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 1,000 ms
コード長 416 bytes
コンパイル時間 2,625 ms
コンパイル使用メモリ 73,896 KB
実行使用メモリ 41,164 KB
最終ジャッジ日時 2024-05-06 01:26:20
合計ジャッジ時間 5,350 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
40,008 KB
testcase_01 AC 109 ms
39,888 KB
testcase_02 AC 110 ms
39,896 KB
testcase_03 AC 99 ms
40,100 KB
testcase_04 AC 108 ms
40,904 KB
testcase_05 AC 95 ms
39,736 KB
testcase_06 AC 110 ms
40,936 KB
testcase_07 AC 107 ms
40,868 KB
testcase_08 AC 108 ms
40,008 KB
testcase_09 AC 105 ms
39,816 KB
testcase_10 AC 105 ms
39,924 KB
testcase_11 AC 100 ms
39,932 KB
testcase_12 AC 116 ms
41,164 KB
testcase_13 AC 113 ms
41,076 KB
testcase_14 AC 107 ms
41,140 KB
testcase_15 AC 108 ms
40,900 KB
testcase_16 AC 116 ms
41,020 KB
testcase_17 AC 138 ms
41,136 KB
testcase_18 AC 100 ms
39,956 KB
testcase_19 AC 109 ms
41,108 KB
testcase_20 AC 103 ms
40,828 KB
testcase_21 AC 105 ms
40,600 KB
testcase_22 AC 100 ms
39,904 KB
testcase_23 AC 108 ms
41,160 KB
testcase_24 AC 110 ms
41,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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