結果

問題 No.166 マス埋めゲーム
ユーザー mamekin
提出日時 2015-04-05 14:55:20
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 567 bytes
コンパイル時間 750 ms
コンパイル使用メモリ 88,860 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-04 02:03:53
合計ジャッジ時間 1,446 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 13 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <sstream>
#include <fstream>
#include <iomanip>
#include <algorithm>
#include <cmath>
#include <string>
#include <vector>
#include <list>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <bitset>
#include <numeric>
#include <limits>
#include <climits>
#include <cfloat>
#include <functional>
using namespace std;

int main()
{
    int h, w, n, k;
    cin >> h >> w >> n >> k;

    if((h * w - 1) % n + 1 == k)
        cout << "YES" << endl;
    else
        cout << "NO" << endl;

    return 0;
}
0