結果

問題 No.166 マス埋めゲーム
ユーザー uafr_csuafr_cs
提出日時 2015-05-15 18:11:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 507 bytes
コンパイル時間 2,478 ms
コンパイル使用メモリ 74,272 KB
実行使用メモリ 41,228 KB
最終ジャッジ日時 2024-07-06 03:58:57
合計ジャッジ時間 5,974 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,104 KB
testcase_01 AC 131 ms
40,816 KB
testcase_02 AC 131 ms
41,016 KB
testcase_03 AC 129 ms
40,828 KB
testcase_04 AC 133 ms
41,068 KB
testcase_05 AC 130 ms
41,112 KB
testcase_06 AC 116 ms
39,796 KB
testcase_07 AC 131 ms
40,916 KB
testcase_08 AC 132 ms
41,228 KB
testcase_09 AC 128 ms
40,940 KB
testcase_10 AC 129 ms
40,724 KB
testcase_11 AC 131 ms
41,164 KB
testcase_12 AC 131 ms
40,860 KB
testcase_13 AC 132 ms
40,972 KB
testcase_14 AC 129 ms
40,940 KB
testcase_15 AC 118 ms
40,084 KB
testcase_16 AC 132 ms
41,128 KB
testcase_17 AC 131 ms
40,940 KB
testcase_18 AC 130 ms
40,708 KB
testcase_19 AC 135 ms
41,092 KB
testcase_20 AC 130 ms
40,984 KB
testcase_21 AC 131 ms
40,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		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) % N == (K % N) ? "YES" : "NO");
	}
}
0