結果

問題 No.384 マス埋めゲーム2
ユーザー yansi819yansi819
提出日時 2024-05-20 08:48:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 249 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 54,176 KB
最終ジャッジ日時 2024-05-20 08:48:09
合計ジャッジ時間 2,444 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 35 ms
52,624 KB
testcase_02 AC 37 ms
53,992 KB
testcase_03 AC 35 ms
52,088 KB
testcase_04 AC 35 ms
52,492 KB
testcase_05 AC 35 ms
51,996 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 33 ms
53,436 KB
testcase_09 AC 35 ms
52,148 KB
testcase_10 AC 32 ms
52,164 KB
testcase_11 WA -
testcase_12 AC 32 ms
52,236 KB
testcase_13 AC 32 ms
53,096 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 38 ms
53,172 KB
testcase_21 WA -
testcase_22 AC 31 ms
52,876 KB
testcase_23 WA -
testcase_24 AC 34 ms
52,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W, N, K = map(int, input().split())
if H == 1:
    print("YES" if (W - 1) % N == K - 1 else "NO")
    exit()
if W == 1:
    print("YES" if (H - 1) % N == K - 1 else "NO")
    exit()

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