結果

問題 No.166 マス埋めゲーム
ユーザー Rp7rfRp7rf
提出日時 2015-03-19 23:39:59
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 690 bytes
コンパイル時間 541 ms
コンパイル使用メモリ 70,532 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-28 23:21:39
合計ジャッジ時間 3,401 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 2 ms
5,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 1 ms
5,376 KB
testcase_18 WA -
testcase_19 TLE -
testcase_20 WA -
testcase_21 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <cassert>
#include <vector>
#include <string>
#include <cmath>
#include <map> 
#include <sstream>
using namespace std;
 
const int MAX= 10000100;

#define loop(i,a,b) for(int i = a ; i < b ; i ++)
#define rep(i,a) loop(i,0,a)
#define all(a) (a).begin(),(a).end()
#define ll long long int
#define gcd(a,b) __gcd(a,b)
#define pb(a) push_back(a)
int GCD(int a, int b) {if(!b) return a; return gcd(b, a%b);}
int lcm(int a, int b) {return a*b / gcd(a, b);}

int main(void){
  ll h,w,n,k;
  cin>>h>>w>>n>>k;
  bool ans = false;
  while(k>0 && h>=0){
    k-=w;
    if(k<0)ans=true;
    h--;
  }
  cout<<(ans?"NO":"YES")<<endl;
}
0