結果

問題 No.1048 Zero (Advanced)
ユーザー bun_bun_bskbn
提出日時 2020-05-08 23:26:59
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 360 bytes
コンパイル時間 614 ms
コンパイル使用メモリ 77,716 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-04 01:14:25
合計ジャッジ時間 1,175 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 2
other AC * 10 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include<map>
#include<string>
#include<algorithm>
#include<sstream>
#include<cmath>
using namespace std;


int main() {
	long long int l,r,m,k;
	cin >> l>>r>>m>>k;
	int n=0;
	int count=0;
	bool flag = false;
	if (l * k <= m && r * k >= m) {
		flag = true;
	}
	if (flag) {
		cout << "Yes";
	}
	else {
		cout << "No";
	}

}
0