結果

問題 No.166 マス埋めゲーム
ユーザー KazunKazun
提出日時 2020-10-03 03:43:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 1,000 ms
コード長 91 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 53,764 KB
最終ジャッジ日時 2024-07-18 04:02:39
合計ジャッジ時間 1,673 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,300 KB
testcase_01 AC 34 ms
52,256 KB
testcase_02 AC 34 ms
52,132 KB
testcase_03 AC 32 ms
53,068 KB
testcase_04 AC 34 ms
52,212 KB
testcase_05 AC 34 ms
52,576 KB
testcase_06 AC 33 ms
52,216 KB
testcase_07 AC 33 ms
52,616 KB
testcase_08 AC 34 ms
52,280 KB
testcase_09 AC 36 ms
52,280 KB
testcase_10 AC 34 ms
52,800 KB
testcase_11 AC 36 ms
52,684 KB
testcase_12 AC 32 ms
52,340 KB
testcase_13 AC 32 ms
52,884 KB
testcase_14 AC 32 ms
52,556 KB
testcase_15 AC 32 ms
51,632 KB
testcase_16 AC 34 ms
51,680 KB
testcase_17 AC 33 ms
52,452 KB
testcase_18 AC 36 ms
52,976 KB
testcase_19 AC 36 ms
53,764 KB
testcase_20 AC 33 ms
52,988 KB
testcase_21 AC 35 ms
52,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W,N,K=map(int,input().split())

if (H*W-1)%N==K-1:
    print("YES")
else:
    print("NO")
0