結果

問題 No.804 野菜が苦手
ユーザー Shawn stayC
提出日時 2020-06-07 12:09:40
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 322 bytes
コンパイル時間 1,570 ms
コンパイル使用メモリ 166,104 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-23 16:42:24
合計ジャッジ時間 2,385 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 16 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0; i<(n); i++)
using namespace std;
typedef long long ll;

int main(){
	int a,b,c,d; cin>>a>>b>>c>>d;
	int mx=d/(1+c);
	if(a>=mx&&b>=a*c) cout << mx << endl;
	else if(a>=mx&&b<a*c) cout << b/c << endl;
	else if(a<mx&&b>=a*c) cout << a << endl;
	else cout << 0 << endl;
}
0