結果
問題 | No.166 マス埋めゲーム |
ユーザー | mayoko_ |
提出日時 | 2015-03-19 23:24:03 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 501 bytes |
コンパイル時間 | 1,081 ms |
コンパイル使用メモリ | 158,632 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-28 23:13:44 |
合計ジャッジ時間 | 1,705 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 20 |
ソースコード
#include <bits/stdc++.h> #define rep(i, n) for (int (i) = 0; (i) < (int)(n); (i)++) const int dx[] = {1, 0, -1, 0}; const int dy[] = {0, 1, 0, -1}; using namespace std; typedef long long ll; int main() { ll H, W, N, K; cin >> H >> W >> N >> K; ll hw = H*W; ll p = hw % N; string ans; if (p == 0) { if (K == N) ans = "YES"; else ans = "NO"; } else { if (p == K) ans = "YES"; else ans = "NO"; } cout << ans << endl; return 0; }