結果
| 問題 |
No.166 マス埋めゲーム
|
| コンテスト | |
| ユーザー |
norioc
|
| 提出日時 | 2024-04-02 02:19:14 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 108 bytes |
| コンパイル時間 | 506 ms |
| コンパイル使用メモリ | 82,176 KB |
| 実行使用メモリ | 52,352 KB |
| 最終ジャッジ日時 | 2024-09-30 23:03:12 |
| 合計ジャッジ時間 | 2,010 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 13 WA * 7 |
ソースコード
H, W, N, K = map(int, input().split())
m = (H * W) % N
if m == K-1:
print('NO')
else:
print('YES')
norioc