結果

問題 No.166 マス埋めゲーム
ユーザー r.suzukir.suzuki
提出日時 2015-12-28 23:50:04
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 358 bytes
コンパイル時間 4,055 ms
コンパイル使用メモリ 74,820 KB
実行使用メモリ 41,580 KB
最終ジャッジ日時 2024-09-19 08:14:03
合計ジャッジ時間 6,625 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
40,684 KB
testcase_01 AC 116 ms
40,936 KB
testcase_02 AC 113 ms
40,148 KB
testcase_03 AC 125 ms
41,156 KB
testcase_04 AC 123 ms
41,196 KB
testcase_05 AC 116 ms
41,328 KB
testcase_06 WA -
testcase_07 AC 101 ms
40,260 KB
testcase_08 AC 111 ms
41,072 KB
testcase_09 AC 112 ms
40,960 KB
testcase_10 AC 115 ms
41,148 KB
testcase_11 AC 114 ms
41,196 KB
testcase_12 AC 117 ms
41,348 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 113 ms
41,184 KB
testcase_16 AC 116 ms
39,740 KB
testcase_17 AC 118 ms
40,808 KB
testcase_18 AC 126 ms
41,348 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

public class No_166 {

	public static void main(String[] args) {
		java.util.Scanner sc = new java.util.Scanner(System.in);
		long l = sc.nextLong() * sc.nextLong();
		int n = sc.nextInt();
		int k = sc.nextInt();
		String ans = "";

		if (k == l % n || l == k) {
			ans = "YES";
		} else {
			ans = "NO";
		}

		System.out.println(ans);
		sc.close();

	}

}
0