結果

問題 No.1048 Zero (Advanced)
ユーザー udonman
提出日時 2020-05-08 22:38:44
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 615 bytes
コンパイル時間 617 ms
コンパイル使用メモリ 83,184 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-04 01:01:32
合計ジャッジ時間 1,280 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3 WA * 1
other AC * 11 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <cmath>
#include <utility>
#include <iostream>
#include <functional>
#include <bitset>
#include <algorithm>
#include <vector>
#include <forward_list>
#include <set>
#include <map>
#include <queue>
#include <deque>
#include <stack>
#include <numeric>
#define ll long long int
#define rep(i,n) for(int i=0;i<(n);i++)
using namespace std;

int main(){
    int l,r,m,k; 
    cin >> l >> r >> m >> k;
    if(k==0){
        cout << "Yes" << endl;
        return 0;
    }
    if(m  < r ){
        cout << "Yes" << endl;
        return 0;
    }
    
    cout << "No" << endl;
}
0