結果

問題 No.166 マス埋めゲーム
ユーザー 37zigen37zigen
提出日時 2016-03-31 12:10:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 1,000 ms
コード長 376 bytes
コンパイル時間 2,116 ms
コンパイル使用メモリ 74,356 KB
実行使用メモリ 41,556 KB
最終ジャッジ日時 2024-10-02 08:24:06
合計ジャッジ時間 6,009 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
40,920 KB
testcase_01 AC 132 ms
41,072 KB
testcase_02 AC 134 ms
41,148 KB
testcase_03 AC 137 ms
41,344 KB
testcase_04 AC 134 ms
40,884 KB
testcase_05 AC 134 ms
41,276 KB
testcase_06 AC 135 ms
41,220 KB
testcase_07 AC 132 ms
41,368 KB
testcase_08 AC 136 ms
41,244 KB
testcase_09 AC 134 ms
41,272 KB
testcase_10 AC 138 ms
41,556 KB
testcase_11 AC 134 ms
41,164 KB
testcase_12 AC 137 ms
41,188 KB
testcase_13 AC 136 ms
41,152 KB
testcase_14 AC 132 ms
41,212 KB
testcase_15 AC 136 ms
41,168 KB
testcase_16 AC 134 ms
41,224 KB
testcase_17 AC 135 ms
41,148 KB
testcase_18 AC 134 ms
41,080 KB
testcase_19 AC 134 ms
41,152 KB
testcase_20 AC 134 ms
41,152 KB
testcase_21 AC 134 ms
41,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder166;
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();
		if(k==n)k=0;
		long mod=((h%n)*(w%n))%n;
		if(mod==k){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}
	}
}
0