結果

問題 No.166 マス埋めゲーム
ユーザー kenkooookenkoooo
提出日時 2015-03-19 23:48:18
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 384 bytes
コンパイル時間 2,058 ms
コンパイル使用メモリ 74,532 KB
実行使用メモリ 56,264 KB
最終ジャッジ日時 2024-06-28 23:23:50
合計ジャッジ時間 5,011 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 101 ms
52,900 KB
testcase_02 AC 113 ms
54,092 KB
testcase_03 AC 113 ms
54,052 KB
testcase_04 AC 115 ms
53,936 KB
testcase_05 AC 101 ms
52,792 KB
testcase_06 WA -
testcase_07 AC 118 ms
53,824 KB
testcase_08 AC 118 ms
54,048 KB
testcase_09 AC 118 ms
54,052 KB
testcase_10 AC 122 ms
54,360 KB
testcase_11 AC 101 ms
52,956 KB
testcase_12 AC 102 ms
52,768 KB
testcase_13 AC 105 ms
52,908 KB
testcase_14 AC 122 ms
54,228 KB
testcase_15 AC 126 ms
54,108 KB
testcase_16 AC 115 ms
54,088 KB
testcase_17 WA -
testcase_18 AC 102 ms
53,012 KB
testcase_19 AC 117 ms
54,252 KB
testcase_20 AC 116 ms
54,108 KB
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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();

		H %= N;
		W %= N;

		long all = H * W;
		all %= N;
		if (all == K) {
			System.out.println("YES");
		} else {
			System.out.println("NO");

		}

	}
}
0