結果

問題 No.384 マス埋めゲーム2
ユーザー uafr_csuafr_cs
提出日時 2016-07-02 01:20:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 433 bytes
コンパイル時間 2,050 ms
コンパイル使用メモリ 74,972 KB
実行使用メモリ 41,704 KB
最終ジャッジ日時 2024-10-12 01:52:25
合計ジャッジ時間 6,092 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,200 KB
testcase_01 AC 128 ms
41,124 KB
testcase_02 AC 131 ms
41,344 KB
testcase_03 AC 115 ms
41,192 KB
testcase_04 AC 129 ms
41,440 KB
testcase_05 AC 115 ms
40,184 KB
testcase_06 AC 129 ms
41,084 KB
testcase_07 AC 116 ms
40,140 KB
testcase_08 AC 130 ms
41,092 KB
testcase_09 AC 130 ms
41,704 KB
testcase_10 AC 129 ms
40,920 KB
testcase_11 AC 130 ms
41,336 KB
testcase_12 AC 118 ms
40,016 KB
testcase_13 AC 129 ms
40,924 KB
testcase_14 AC 114 ms
41,228 KB
testcase_15 AC 128 ms
41,320 KB
testcase_16 AC 130 ms
41,320 KB
testcase_17 AC 127 ms
40,876 KB
testcase_18 AC 128 ms
40,996 KB
testcase_19 AC 131 ms
41,032 KB
testcase_20 AC 127 ms
41,044 KB
testcase_21 AC 132 ms
41,100 KB
testcase_22 AC 131 ms
41,424 KB
testcase_23 AC 131 ms
41,328 KB
testcase_24 AC 128 ms
40,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final long H = sc.nextLong();
		final long W = sc.nextLong();
		final long N = sc.nextLong();
		final long K = sc.nextLong();
		
		System.out.println((H + W - 1) % N == K % N ? "YES" : "NO");
	}

}
0