結果

問題 No.166 マス埋めゲーム
ユーザー 37zigen
提出日時 2016-03-31 12:08:47
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 359 bytes
コンパイル時間 2,309 ms
コンパイル使用メモリ 73,952 KB
実行使用メモリ 41,808 KB
最終ジャッジ日時 2024-10-02 08:23:52
合計ジャッジ時間 5,917 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 11 WA * 4 RE * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder166;
import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		int h=sc.nextInt();
		int w=sc.nextInt();
		int n=sc.nextInt();
		int k=sc.nextInt();
		if(k==n)k=0;
		int mod=(h*w)%n;
		if(mod==k){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}
	}
}
0