結果
問題 | No.166 マス埋めゲーム |
ユーザー |
![]() |
提出日時 | 2015-08-22 15:04:56 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 1,477 bytes |
コンパイル時間 | 1,299 ms |
コンパイル使用メモリ | 160,848 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-18 12:46:26 |
合計ジャッジ時間 | 1,986 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 20 |
ソースコード
#include <bits/stdc++.h>using namespace std;#define rep(i,n) for(int i=0;i<(n);++i)#define loop for(;;)#define trace(var) cerr<<">>> "<<#var<<" = "<<var<<endl;#define inf (1e9)#define eps (1e-9)using Integer = long long;using Real = long double;const Real PI = acosl(-1);template<class S, class T> inlineostream& operator<<(ostream&os, pair<S,T> p) {return os << '(' << p.first << ", " << p.second << ')';}template<class S, class T, class U> inlineostream& operator<<(ostream&os, tuple<S,T,U> t) {return os << '('<< get<0>(t) << ", "<< get<1>(t) << ", "<< get<2>(t) << ')';}template<class T> inlineostream& operator<<(ostream&os, vector<T> v) {if (v.size() == 0) { return os << "(empty)"; }os << v[0];for (int i=1, len=v.size(); i<len; ++i) os << ' ' << v[i];return os;}template<class T> inlineistream& operator>>(istream&is, vector<T>&v) {rep (i, v.size()) is >> v[i];return is;}// ^ > v <int dx[] = { -1, 0, 1, 0 };int dy[] = { 0, 1, 0, -1 };using vi = vector<int>;using vvi = vector<vi>;using vd = vector<double>;using vvd = vector<vd>;using vb = vector<bool>;int main() {cin.tie(0);ios::sync_with_stdio(0);cout.setf(ios::fixed);cout.precision(10);random_device dev;mt19937 rand(dev());Integer h, w, n, k; cin >> h >> w >> n >> k;Integer m = h * w;if (((m+n-1) % n) == (k-1))cout << "YES" << endl;elsecout << "NO" << endl;return 0;}