結果

問題 No.166 マス埋めゲーム
ユーザー spaciaspacia
提出日時 2015-12-20 11:29:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 52 ms / 1,000 ms
コード長 547 bytes
コンパイル時間 1,711 ms
コンパイル使用メモリ 74,716 KB
実行使用メモリ 50,524 KB
最終ジャッジ日時 2024-09-17 11:57:50
合計ジャッジ時間 3,451 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,284 KB
testcase_01 AC 47 ms
50,476 KB
testcase_02 AC 46 ms
50,264 KB
testcase_03 AC 47 ms
50,192 KB
testcase_04 AC 46 ms
49,912 KB
testcase_05 AC 43 ms
50,260 KB
testcase_06 AC 44 ms
50,356 KB
testcase_07 AC 43 ms
49,984 KB
testcase_08 AC 47 ms
49,932 KB
testcase_09 AC 45 ms
50,336 KB
testcase_10 AC 46 ms
50,256 KB
testcase_11 AC 45 ms
49,904 KB
testcase_12 AC 46 ms
50,064 KB
testcase_13 AC 46 ms
50,428 KB
testcase_14 AC 47 ms
50,412 KB
testcase_15 AC 44 ms
50,384 KB
testcase_16 AC 43 ms
50,524 KB
testcase_17 AC 46 ms
50,140 KB
testcase_18 AC 45 ms
50,208 KB
testcase_19 AC 47 ms
50,248 KB
testcase_20 AC 47 ms
50,264 KB
testcase_21 AC 46 ms
50,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main166 {
	
	public static void out (Object out) {
		System.out.println(out);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		String[] line = br.readLine().split(" ");
		long h = Long.parseLong(line[0]);
		long w = Long.parseLong(line[1]);
		long n = Long.parseLong(line[2]);
		long k = Long.parseLong(line[3]) % n;
		
		System.out.println((h * w) % n == k ? "YES" : "NO");
	}
}
0